Class describing the layout of the table in tabular visualizations.

2.0

Hierarchy (view full)

Methods

  • Casts this object to the specified type. Throws error on failure.

    Type Parameters

    • T1

      The target type of the cast.

    • T2

      The type of the object to cast.

    Parameters

    Returns T1

  • Determines whether the specified object is equal to the current object.

    Parameters

    • obj: any

      The object to compare with the current object.

    Returns boolean

    true if the specified object is equal to the current object; otherwise, false.

  • Serves as the default hash function.

    Returns number

    A hash code for the current object.

  • Returns a string that represents the current object.

    Returns string

    A string that represents the current object.

  • Casts this object to the specified type. Returns null on failure.

    Type Parameters

    • T1

      The target type of the cast.

    • T2

      The type of the object to cast.

    Parameters

    Returns null | T1

  • Determines whether the specified object instances are considered equal.

    Parameters

    • objA: any

      The first object to compare.

    • objB: any

      The second object to compare.

    Returns boolean

    true if the objects are considered equal; otherwise, false. If both objA and objB are null, the method returns true.

Default capability

  • get ColumnCount(): number
  • Gets the number of columns.

    Returns number

    2.0

  • get FrozenColumnCount(): number
  • Gets the number of frozen columns.

    Returns number

    2.0

  • get FrozenColumnsWidth(): number
  • The width of the frozen columns, including any row headers.

    Returns number

    2.0

  • get FrozenRowCount(): number
  • Gets the number of frozen rows.

    Returns number

    2.0

  • get FrozenRowsHeight(): number
  • The height of the frozen rows, including column headers.

    Returns number

    2.0

  • get Height(): number
  • The total height of the layout.

    Returns number

    2.0

  • get RowCount(): number
  • Gets the number of rows.

    Returns number

    2.0

  • get ScrollPosition(): Point
  • The current scroll position in the view. This point is expressed as an offset into the area of the non-frozen rows and columns. The value Point.Empty signals that no scrolling has taken place.

    Returns Point

    2.0

  • get Width(): number
  • The total width of the layout.

    Returns number

    2.0

  • Implements System.IDisposable.

    Returns void

    2.0

  • Gets the cell at a given point.

    Parameters

    Returns CellRange

    A cell range. This cell range can be Spotfire.Dxp.Application.Visuals.CellRange.Empty if the point is outside of the bounds of the layout.

    2.0

  • Gets the cell range for a given rectangle.

    Parameters

    Returns CellRange

    A cell range. If the rectangle doesn't have a width or height, an empty cell range is returned.

    2.0

  • Gets the bounding rectangle for a range of cells.

    Parameters

    Returns Rectangle

    The bounding rectangle.

    2.0

  • Gets the offset of a column.

    Parameters

    • columnIndex: number | Int32

      A column index.

    Returns number

    The offset to the column.

    2.0

  • Gets the width of column.

    Parameters

    • columnIndex: number | Int32

      A column index.

    Returns number

    The width of the column.

    2.0

  • Gets the height of a row.

    Parameters

    • rowIndex: number | Int32

      The row index.

    Returns number

    The height of the row.

    2.0

  • Gets the offset to a row.

    Parameters

    • rowIndex: number | Int32

      The row index.

    Returns number

    The offset to the row.

    2.0