[]
Contains information about a part of the FlexGrid at a specified coordinate.
public class GridHitTestInfo
The GridHitTestInfo class, in conjunction with the FlexGrid.HitTest(RoutedEventArgs) method of the FlexGrid control, is used to determine which part of a FlexGrid control the user has clicked. The GridHitTestInfo class contains the row, column, and type of cell at the specified location.
To obtain a GridHitTestInfo, call the FlexGrid.HitTest(RoutedEventArgs) method from one of the pointer event handlers in the control.
Name | Description |
---|---|
GridHitTestInfo(FlexGrid, C1InputEventArgs) | Creates the GridHitTestInfo class instance. |
Name | Description |
---|---|
CellRange | Gets a GridCellRange object that represents the cell at the specified location. |
CellType | Gets the type of cell at the specified location. |
Column | Gets the index of the column at the specified location. |
Row | Gets the index of the row at the specified location. |