Spread Windows Forms 6.0 Product Documentation
ColumnCount Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > SheetDataModelEventArgs Class : ColumnCount Property


Glossary Item Box

Gets the number of columns.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property ColumnCount As Integer
Visual Basic (Usage)Copy Code
Dim instance As SheetDataModelEventArgs
Dim value As Integer
 
value = instance.ColumnCount
C# 
public int ColumnCount {get;}

Property Value

Integer number of columns affected

Example

C#Copy Code
FarPoint.Win.Spread.Model.BaseSheetDataModel model;

model = (FarPoint.Win.Spread.Model.BaseSheetDataModel)fpSpread1.ActiveSheet.Models.Data;
model.ColumnCount = 4;

model.Changed += new FarPoint.Win.Spread.Model.SheetDataModelEventHandler(model_DataModelChanged);
    
private void button1_Click(object sender, System.EventArgs e)
{
    model.SetValue(0, 2, "DataModel");
}

private void model_DataModelChanged(object sender, FarPoint.Win.Spread.Model.SheetDataModelEventArgs e)
{
    textBox1.Text = e.ColumnCount.ToString();
}
Visual BasicCopy Code
Friend WithEvents model As FarPoint.Win.Spread.Model.BaseSheetDataModel

model = FpSpread1.ActiveSheet.Models.Data
model.ColumnCount = 4

Dim h As FarPoint.Win.Spread.Model.SheetDataModelEventHandler = AddressOf model_DataModelChanged
AddHandler model.Changed, h

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    model.SetValue(0, 2, "DataModel")
End Sub

Private Sub model_DataModelChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.Model.SheetDataModelEventArgs)
    TextBox1.Text = e.ColumnCount.ToString()
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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.