Spread Windows Forms 11.0 Product Documentation
Remove Method (SheetViewCollection)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetViewCollection Class : Remove Method
Removes the specified sheet from the collection.
Overload List
OverloadDescription
Removes the specified sheet from the collection.  
Example
This example removes the specified sheet from the collection.
System.Collections.ArrayList coll = new System.Collections.ArrayList(3); 
FarPoint.Win.Spread.SheetView Sheet1 = new FarPoint.Win.Spread.SheetView();
FarPoint.Win.Spread.SheetView Sheet2 = new FarPoint.Win.Spread.SheetView();
FarPoint.Win.Spread.SheetView Sheet3 = new FarPoint.Win.Spread.SheetView();
Sheet1.SheetName = "One";
Sheet2.SheetName = "Two";
Sheet3.SheetName = "Three";
coll.AddRange(new Object[] {Sheet1, Sheet2, Sheet3});
fpSpread1.Sheets.AddRange(coll);
fpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.Always;
fpSpread1.Sheets.Remove(Sheet1);
Dim coll As New System.Collections.ArrayList(3)
Dim Sheet1 As New FarPoint.Win.Spread.SheetView()
Dim Sheet2 As New FarPoint.Win.Spread.SheetView()
Dim Sheet3 As New FarPoint.Win.Spread.SheetView()
Sheet1.SheetName = "One"
Sheet2.SheetName = "Two"
Sheet3.SheetName = "Three"
coll.AddRange(New Object() {Sheet1, Sheet2, Sheet3})
FpSpread1.Sheets.AddRange(coll)
FpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.Always
FpSpread1.Sheets.Remove(Sheet1)
See Also

Reference

SheetViewCollection Class
SheetViewCollection Members
RemoveAt Method

User-Task Documentation

Removing a Sheet