Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / Columns Class / Count Property
Example


In This Topic
    Count Property (Columns)
    In This Topic
    Gets or sets the number of columns in the collection.
    Syntax
    'Declaration
     
    Public Property Count As Integer
    'Usage
     
    Dim instance As Columns
    Dim value As Integer
     
    instance.Count = value
     
    value = instance.Count
    public int Count {get; set;}

    Property Value

    Integer number of columns
    Remarks
    This is the number of columns in the data area of the sheet. For the number of columns in the row header, refer to RowHeader ColumnCount.
    Example
    This example specifies the number of columns for the active sheet.
    fpSpread1.ActiveSheet.Columns.Count = 5;
    fpSpread1.ActiveSheet.Columns.Count = 5
    See Also