Spread Windows Forms 12.0 Product Documentation
Row Property (HeaderHitTestInformation)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > HeaderHitTestInformation Class : Row Property
Gets the row location referred to in the header.
Syntax
'Declaration
 
Public ReadOnly Property Row As Integer
'Usage
 
Dim instance As HeaderHitTestInformation
Dim value As Integer
 
value = instance.Row
public int Row {get;}

Property Value

Integer row index
Example
This example returns the row being clicked on.
private void fpSpread1MouseUpClick(object sender, MouseEventArgs e)
{
      FarPoint.Win.Spread.HitTestInformation hti;
      FarPoint.Win.Spread.HeaderHitTestInformation hi;
      hti = fpSpread1.HitTest(e.X, e.Y);
      hi = hti.HeaderInfo;
      if (hti.Type == HitTestType.RowHeader)
      {
            MessageBox.Show(hi.Row.ToString());
      }   
}
Private Sub FpSpread1MouseUp(ByVal sender As Object, ByVal e As MouseEventArgs)
      Dim hti As FarPoint.Win.Spread.HitTestInformation
      Dim hi As New FarPoint.Win.Spread.HeaderHitTestInformation
      hti = FpSpread1.HitTest(e.X, e.Y)
      hi = hti.HeaderInfo
      If hti.Type = HitTestType.RowHeader Then
            MessageBox.Show(hi.Row)
      End If
End Sub
See Also

Reference

HeaderHitTestInformation Class
HeaderHitTestInformation Members