Spread Windows Forms 12.0 Product Documentation
RangeGroupHitTestInformation Constructor
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > RangeGroupHitTestInformation Class : RangeGroupHitTestInformation Constructor
Initializes a new instance of the RangeGroupHitTestInformation class.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New RangeGroupHitTestInformation()
public RangeGroupHitTestInformation()
Example
The example returns the column index of the hit test.
private void fpSpread1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) 
{
FarPoint.Win.Spread.RangeGroupHitTestInformation rght;
FarPoint.Win.Spread.HitTestInformation ht;
ht = fpSpread1.HitTest(e.X, e.Y);
rght = ht.RangeGroupInfo;
bool b = rght.InColumnPanel;
int i = rght.ColumnIndex;
MessageBox.Show(b.ToString() + " - " + i.ToString());
}
Private Sub FpSpread1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles FpSpread1.MouseDown
Dim rght As FarPoint.Win.Spread.RangeGroupHitTestInformation
Dim ht As FarPoint.Win.Spread.HitTestInformation
ht = FpSpread1.HitTest(e.X, e.Y)
rght = ht.RangeGroupInfo
Dim b As Boolean = rght.InColumnPanel
Dim i As Integer = rght.ColumnIndex
MsgBox(b.ToString() & " - " & i.ToString())
End Sub
See Also

Reference

RangeGroupHitTestInformation Class
RangeGroupHitTestInformation Members