Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / ISheetDataModel Interface / ColumnCount Property
Example


In This Topic
    ColumnCount Property (ISheetDataModel)
    In This Topic
    Gets or sets the number of columns.
    Syntax
    'Declaration
     
    Property ColumnCount As Integer
    'Usage
     
    Dim instance As ISheetDataModel
    Dim value As Integer
     
    instance.ColumnCount = value
     
    value = instance.ColumnCount
    int ColumnCount {get; set;}

    Property Value

    Integer number of columns
    Example
    This example sets the number of columns and rows in the sheet.
    FarPoint.Win.Spread.Model.ISheetDataModel isd;
    isd = (FarPoint.Win.Spread.Model.ISheetDataModel)fpSpread1.ActiveSheet.Models.Data;
    isd.ColumnCount = 4;
    isd.RowCount = 5;
    Dim isd As FarPoint.Win.Spread.Model.ISheetDataModel
    isd = FpSpread1.ActiveSheet.Models.Data
    isd.ColumnCount = 4
    isd.RowCount = 5
    See Also