Spread Windows Forms 12.0 Product Documentation
RowCount Property (SheetStyleModelEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > SheetStyleModelEventArgs Class : RowCount Property
Gets the number of rows, or -1 if all rows were affected.
Syntax
'Declaration
 
Public ReadOnly Property RowCount As Integer
'Usage
 
Dim instance As SheetStyleModelEventArgs
Dim value As Integer
 
value = instance.RowCount
public int RowCount {get;}

Property Value

Integer number of rows affected
Example
This example returns the number of rows affected, in this case a -1 since all the columns were affected.
FarPoint.Win.Spread.Model.BaseSheetStyleModel model;

model = (FarPoint.Win.Spread.Model.BaseSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;

model.Changed += new FarPoint.Win.Spread.Model.SheetStyleModelEventHandler(model_StyleModelChanged);
    
private void button1_Click(object sender, System.EventArgs e)
{
    FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
    sInfo.BackColor = Color.Teal;
    model.AltRowCount = 2;
    model.SetDirectAltRowInfo(0, sInfo);
}

private void model_StyleModelChanged(object sender, FarPoint.Win.Spread.Model.SheetStyleModelEventArgs e)
{
    textBox1.Text = e.RowCount.ToString();
}
Friend WithEvents model As FarPoint.Win.Spread.Model.BaseSheetStyleModel

model = fpSpread1.ActiveSheet.Models.Style

Dim h As FarPoint.Win.Spread.Model.SheetStyleModelEventHandler = AddressOf model_StyleModelChanged
AddHandler model.Changed, h

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim sInfo As New FarPoint.Win.Spread.StyleInfo
    sInfo.BackColor = Color.Teal
    model.AltRowCount = 2
    model.SetDirectAltRowInfo(0, sInfo)
End Sub

Private Sub model_StyleModelChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.Model.SheetStyleModelEventArgs)
    TextBox1.Text = e.RowCount.ToString()
End Sub
See Also

Reference

SheetStyleModelEventArgs Class
SheetStyleModelEventArgs Members