Spread WPF Documentation
RemoveColumns(Int32,Int32) Method
Example 


The index of the first column to remove.
The number of columns to remove.
Removes the column or columns on this sheet at the specified index.
Syntax
'Declaration
 
Public Overloads Sub RemoveColumns( _
   ByVal column As System.Integer, _
   ByVal count As System.Integer _
) 
'Usage
 
Dim instance As Worksheet
Dim column As System.Integer
Dim count As System.Integer
 
instance.RemoveColumns(column, count)
public void RemoveColumns( 
   System.int column,
   System.int count
)

Parameters

column
The index of the first column to remove.
count
The number of columns to remove.
Example
This example uses the RemoveColumns method.
gcSpreadSheet1.Sheets[0].Cells[0, 0, 0, 5].Text = "Test";

private void button1_Click(object sender, RoutedEventArgs e)
{
    //gcSpreadSheet1.Sheets[0].RemoveColumns(0, 2);
    gcSpreadSheet1.Sheets[0].RemoveColumns(0, 2, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells);
}
GcSpreadSheet1.Sheets(0).Cells(0, 0, 0, 5).Text = "Test"

Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
   'GcSpreadSheet1.Sheets(0).RemoveColumns(0, 2)
    GcSpreadSheet1.Sheets(0).RemoveColumns(0, 2, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells)
End Sub
Requirements

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

See Also

Reference

Worksheet Class
Worksheet Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.