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 GridViewWindowInheritance: object → GridViewWindow
Properties
Section titled “Properties”Columns
Section titled “Columns”Gets the readonly collection of GridViewHeader columns.
public ReadOnlyCollection<GridViewHeader> Columns { get; }Property Value
Section titled “Property Value”ReadOnlyCollection<GridViewHeader>
t
Gets the readonly collection of GridViewHeader rows.
public ReadOnlyCollection<GridViewHeader> Rows { get; }Property Value
Section titled “Property Value”ReadOnlyCollection<GridViewHeader>
Methods
Section titled “Methods”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)Parameters
Section titled “Parameters”columnGridViewHeader
The column for the desired cell.rowGridViewHeader
The row for the desired cell.
Returns
Section titled “Returns”The Rect that represents the display rectangle of the cell.
GetCellRect(int, int)
Section titled “GetCellRect(int, int)”Returns the rectangle that represents the display area for a cell.
public Rect GetCellRect(int columnIndex, int rowIndex)Parameters
Section titled “Parameters”columnIndexint
The column index for the desired cell.rowIndexint
The row index for the desired cell.
Returns
Section titled “Returns”The Rect that represents the display rectangle of the cell.
GetHeaders(Orientation)
Section titled “GetHeaders(Orientation)”Returns the readonly collection of headers specified by orientation.
public ReadOnlyCollection<GridViewHeader> GetHeaders(Orientation orientation)Parameters
Section titled “Parameters”orientationOrientation
The orientation of control.
Returns
Section titled “Returns”ReadOnlyCollection<GridViewHeader>
An readonly collection of Rows or Columns depends of orientation parameter.
GetHeaders(GridViewHeaderSection)
Section titled “GetHeaders(GridViewHeaderSection)”Returns the readonly collection of headers specified by the orientation of section.
public ReadOnlyCollection<GridViewHeader> GetHeaders(GridViewHeaderSection section)Parameters
Section titled “Parameters”sectionGridViewHeaderSection
the header section of a GridViewControl.
Returns
Section titled “Returns”ReadOnlyCollection<GridViewHeader>
An readonly collection of Rows or Columns depends of orientation parameter.