Spread Silverlight Documentation
RemoveTable(SheetTable) Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class > RemoveTable Method : RemoveTable(SheetTable) Method
The table instance to remove.
Removes a specified table.
Syntax
'Declaration
 
Public Overloads Sub RemoveTable( _
   ByVal table As SheetTable _
) 
'Usage
 
Dim instance As Worksheet
Dim table As SheetTable
 
instance.RemoveTable(table)
public void RemoveTable( 
   SheetTable table
)

Parameters

table
The table instance to remove.
Example
This example uses the RemoveTable method.
gcSpreadSheet1.Sheets[0].Cells[1, 1].Text = "Last Name";
gcSpreadSheet1.Sheets[0].Cells[1, 2].Text = "Value";
gcSpreadSheet1.Sheets[0].Cells[2, 1].Text = "Smith";
gcSpreadSheet1.Sheets[0].Cells[2, 2].Value = 50;
gcSpreadSheet1.Sheets[0].Cells[3, 1].Text = "Vil";
gcSpreadSheet1.Sheets[0].Cells[3, 2].Value = 10;
gcSpreadSheet1.Sheets[0].Cells[4, 1].Text = "Press";
gcSpreadSheet1.Sheets[0].Cells[4, 2].Value = 78;
gcSpreadSheet1.Sheets[0].AddTable("Table1", 1, 1, 5, 2);  

GrapeCity.Windows.SpreadSheet.Data.SheetTable ntable = new GrapeCity.Windows.SpreadSheet.Data.SheetTable();
ntable = gcSpreadSheet1.Sheets[0].FindTable("Table1");
gcSpreadSheet1.Sheets[0].MoveTable(ntable, 3, 3);
//gcSpreadSheet1.Sheets[0].ResizeTable(ntable, 6, 3);   
//gcSpreadSheet1.Sheets[0].RemoveTable(ntable);
GcSpreadSheet1.Sheets(0).Cells(1, 1).Text = "Last Name"
GcSpreadSheet1.Sheets(0).Cells(1, 2).Text = "Value"
GcSpreadSheet1.Sheets(0).Cells(2, 1).Text = "Smith"
GcSpreadSheet1.Sheets(0).Cells(2, 2).Value = 50
GcSpreadSheet1.Sheets(0).Cells(3, 1).Text = "Vil"
GcSpreadSheet1.Sheets(0).Cells(3, 2).Value = 10
GcSpreadSheet1.Sheets(0).Cells(4, 1).Text = "Press"
GcSpreadSheet1.Sheets(0).Cells(4, 2).Value = 78
GcSpreadSheet1.Sheets(0).AddTable("Table1", 1, 1, 5, 2)

Dim ntable As New GrapeCity.Windows.SpreadSheet.Data.SheetTable()
ntable = GcSpreadSheet1.Sheets(0).FindTable("Table1")
GcSpreadSheet1.Sheets(0).MoveTable(ntable, 3, 3)
'GcSpreadSheet1.Sheets(0).ResizeTable(ntable, 6, 3)   
'GcSpreadSheet1.Sheets(0).RemoveTable(ntable)
See Also

Reference

Worksheet Class
Worksheet Members
Overload List