Spread Windows Forms 12.0 Product Documentation
RowHeader Property (TextTipFetchEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > TextTipFetchEventArgs Class : RowHeader Property
Gets whether the cell is in the row headers.
Syntax
'Declaration
 
Public ReadOnly Property RowHeader As Boolean
'Usage
 
Dim instance As TextTipFetchEventArgs
Dim value As Boolean
 
value = instance.RowHeader
public bool RowHeader {get;}

Property Value

Boolean: true if cell is in a row header; false if not
Example
private void fpSpread1_TextTipFetch(object sender, FarPoint.Win.Spread.TextTipFetchEventArgs e)
{
    label1.Text = "The tip is in a row header is " + e.RowHeader + " ,  and in a column header is " + e.ColumnHeader;
}
Private Sub FpSpread1_TextTipFetch(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.TextTipFetchEventArgs) Handles FpSpread1.TextTipFetch
    Label1.Text = "The tip is in a row header is " & e.RowHeader & " ,  and in a column header is " & e.ColumnHeader
End Sub
See Also

Reference

TextTipFetchEventArgs Class
TextTipFetchEventArgs Members