DataGrid::HitTestInfo Class
Contains information about a part of the System.Windows.Forms::DataGrid at a specified coordinate. This class cannot be inherited.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The DataGrid::HitTestInfo type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Column | Gets the number of the column the user has clicked. |
![]() | Row | Gets the number of the row the user has clicked. |
![]() | Type | Gets the part of the System.Windows.Forms::DataGrid control, other than the row or column, that was clicked. |
| Name | Description | |
|---|---|---|
![]() | Equals | Indicates whether two objects are identical. (Overrides Object::Equals(Object).) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Gets the hash code for the DataGrid::HitTestInfo instance. (Overrides Object::GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Gets the type, row number, and column number. (Overrides Object::ToString().) |
| Name | Description | |
|---|---|---|
![]() ![]() | Nowhere | Indicates that a coordinate corresponds to part of the System.Windows.Forms::DataGrid control that is not functioning. |
The DataGrid::HitTestInfo class, in conjunction with the HitTest method of the DataGrid control, is used to determine which part of a DataGrid control the user has clicked. The DataGrid::HitTestInfo class contains the row, column, and part of the grid that was clicked. See the DataGrid::HitTestType enumeration returned by the Type property for a complete list of grid parts.
To return a DataGrid::HitTestInfo, invoke the HitTest method from the MouseDown event of DataGrid control. Pass the x and y properties of the MouseEventArgs to the HitTest method.
The following example uses the HitTest method in a MouseDown event to return the DataGrid::HitTestInfo object. The row, column, and part of the grid are then printed.
private: void dataGrid1_MouseDown( Object^ /*sender*/, System::Windows::Forms::MouseEventArgs^ e ) { Console::WriteLine(); System::Windows::Forms::DataGrid::HitTestInfo^ myHitTest; // Use the DataGrid control's HitTest method with the x and y properties. myHitTest = dataGrid1->HitTest( e->X, e->Y ); Console::WriteLine( myHitTest ); Console::WriteLine( "Column {0}", myHitTest->Column ); Console::WriteLine( "Row {0}", myHitTest->Row ); Console::WriteLine( "Type {0}", myHitTest->Type ); Console::WriteLine( "ToString {0}", myHitTest ); Console::WriteLine( "Hit {0}", myHitTest->Type ); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
