Skip to content
Auto
Products

GridViewWindow

Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Product: TagBites.WinSchedulers v. 1.3.8

Represents an object that contains columns and rows.

public class GridViewWindow

Inheritance: object → GridViewWindow

Gets the readonly collection of GridViewHeader columns.

public ReadOnlyCollection<GridViewHeader> Columns { get; }

ReadOnlyCollection<GridViewHeader>

t

Gets the readonly collection of GridViewHeader rows.

public ReadOnlyCollection<GridViewHeader> Rows { get; }

ReadOnlyCollection<GridViewHeader>

GetCellRect(GridViewHeader, GridViewHeader)

Section titled “GetCellRect(GridViewHeader, GridViewHeader)”

Returns the rectangle that represents the display area for a cell.

public Rect GetCellRect(GridViewHeader column, GridViewHeader row)

Rect

The Rect that represents the display rectangle of the cell.

Returns the rectangle that represents the display area for a cell.

public Rect GetCellRect(int columnIndex, int rowIndex)
  • columnIndex int
    The column index for the desired cell.
  • rowIndex int
    The row index for the desired cell.

Rect

The Rect that represents the display rectangle of the cell.

Returns the readonly collection of headers specified by orientation.

public ReadOnlyCollection<GridViewHeader> GetHeaders(Orientation orientation)

ReadOnlyCollection<GridViewHeader>

An readonly collection of Rows or Columns depends of orientation parameter.

Returns the readonly collection of headers specified by the orientation of section.

public ReadOnlyCollection<GridViewHeader> GetHeaders(GridViewHeaderSection section)

ReadOnlyCollection<GridViewHeader>

An readonly collection of Rows or Columns depends of orientation parameter.