'Declaration Public Sub Add( _ ByVal index As Integer, _ ByVal count As Integer _ )
'Usage Dim instance As Rows Dim index As Integer Dim count As Integer instance.Add(index, count)
public void Add( int index, int count )
if (IsPostBack) { FpSpread1.ActiveSheetView.Rows.Add(2, 3); }
If IsPostBack Then FpSpread1.ActiveSheetView.Rows.Add(2, 3) End If
Rows Class Rows Members