Gets the number of columns.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property ColumnCount As Integer |
C# | |
---|
public int ColumnCount {get;} |
Property Value
Integer number of columns
Example
C# | Copy Code |
---|
private void fpSpread1_Sheet1_CellChanged(object sender, FarPoint.Win.Spread.SheetViewEventArgs e)
{
MessageBox.Show("Changed " + e.RowCount + " row(s)" + ", " + e.ColumnCount + " column(s)");
}
|
Visual Basic | Copy Code |
---|
Private Sub FpSpread1_Sheet1_CellChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SheetViewEventArgs) Handles
FpSpread1_Sheet1.CellChanged
MessageBox.Show("Changed " & e.RowCount & " row" & ", " & e.ColumnCount & " column")
End Sub |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also