Spread Windows Forms 6.0 Product Documentation
RemoveRow Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetDataModel Class : RemoveRow Method


row
Index of row to remove

Glossary Item Box

Removes a row at the specified position.

Syntax

Visual Basic (Declaration) 
Public Sub RemoveRow( _
   ByVal row As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetDataModel
Dim row As Integer
 
instance.RemoveRow(row)
C# 
public void RemoveRow( 
   int row
)

Parameters

row
Index of row to remove

Exceptions

ExceptionDescription
System.ArgumentOutOfRangeException Specified row is out of range; must be between 0 and total number of rows

Example

Visual BasicCopy Code
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8)
FpSpread1.ActiveSheet.Models.Data = dataModel
dataModel.RemoveRow(7)
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8);
fpSpread1.ActiveSheet.Models.Data = dataModel;
dataModel.RemoveRow(7);

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.