[]
Contains information, such as the row and column indexes, about a specific coordinate pair in the C1FlexGrid control.
public struct HitTestInfo
Use the HitTest(int, int) method to obtain a HitTestInfo value.
Name | Description |
---|---|
Column | Get the index of the column at the point being tested (if the point does not correspond to a cell, it returns -1). |
IsFooter | Gets whether mouse is on footer. |
Point | The point on the control surface, in pixels. |
Row | Get the index of the row at the point being tested (if the point does not correspond to a cell, it returns -1). |
Type | Gets a HitTestTypeEnum that describes the type of element described by a HitTestInfo. |
X | The X coordinate of a point on the control surface, in pixels. |
Y | The Y coordinate of a point on the control surface, in pixels. |