Spread Windows Forms 12.0 Product Documentation
ColumnFooter Property (CellClickEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > CellClickEventArgs Class : ColumnFooter Property
Gets whether the cell that is clicked is in the column footer.
Syntax
'Declaration
 
Public ReadOnly Property ColumnFooter As Boolean
'Usage
 
Dim instance As CellClickEventArgs
Dim value As Boolean
 
value = instance.ColumnFooter
public bool ColumnFooter {get;}
Example
This example uses the ColumnFooter property.
private void fpSpread1_CellClick(object sender, FarPoint.Win.Spread.CellClickEventArgs e)
        {
            listBox1.Items.Add(e.ColumnFooter.ToString());
        }
Private Sub fpSpread1_CellClick(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.CellClickEventArgs) Handles fpSpread1.CellClick
        ListBox1.Items.Add(e.ColumnFooter.ToString())
End Sub
See Also

Reference

CellClickEventArgs Class
CellClickEventArgs Members