Contains information about a part of the C1FlexGrid at a specified coordinate.

Namespace:  C1.Silverlight.FlexGrid
Assembly:  C1.Silverlight.FlexGrid.4 (in C1.Silverlight.FlexGrid.4.dll)

Syntax

C#
public class HitTestInfo
Visual Basic
Public Class HitTestInfo

Remarks

The HitTestInfo class, in conjunction with the HitTest(MouseEventArgs) method of the C1.Silverlight.FlexGrid control, is used to determine which part of a C1.Silverlight.FlexGrid control the user has clicked. The HitTestInfo class contains the row, column, and type of cell at the specified location.

To obtain a HitTestInfo, call the HitTest(MouseEventArgs) method from one of the mouse event handlers in the control. Pass MouseEventArgs event parameter to the HitTest(MouseEventArgs) method.

Inheritance Hierarchy

System..::..Object
  C1.Silverlight.FlexGrid..::..HitTestInfo

See Also