Spread Windows Forms 7.0 Product Documentation
RowCount Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > SheetSelectionModelEventArgs Class : RowCount Property


Glossary Item Box

Gets the number of rows in the selection.

Syntax

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

Property Value

Integer number of rows affected

Example

This example returns the number of rows in the selection.
C#Copy Code
FarPoint.Win.Spread.Model.BaseSheetSelectionModel model;

model = (FarPoint.Win.Spread.Model.BaseSheetSelectionModel)fpSpread1.ActiveSheet.Models.Selection;
model.AddSelection(0, 0, 2, 2);

model.Changed += new FarPoint.Win.Spread.Model.SheetSelectionModelEventHandler(model_SelectionModelChanged);
    
private void button1_Click(object sender, System.EventArgs e)
{
    model.AddSelection(4, 2, 2, 3);
}

private void model_SelectionModelChanged(object sender, FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs e)
{
    textBox1.Text = e.RowCount.ToString();
}
Visual BasicCopy Code
Friend WithEvents model As FarPoint.Win.Spread.Model.BaseSheetSelectionModel

model = FpSpread1.ActiveSheet.Models.Selection
model.AddSelection(0, 0, 2, 2)

Dim h As FarPoint.Win.Spread.Model.SheetSelectionModelEventHandler = AddressOf model_SelectionModelChanged
AddHandler model.Changed, h

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    model.AddSelection(4, 2, 2, 3)
End Sub

Private Sub model_SelectionModelChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.Model.SheetSelectionModelEventArgs)
    TextBox1.Text = e.RowCount.ToString()
End Sub

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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