Spread Silverlight Documentation
RemoveSpanCell(Int32,Int32,SheetArea) Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class > RemoveSpanCell Method : RemoveSpanCell(Int32,Int32,SheetArea) Method
The row index of the anchor cell for the span (at which spanned cells start).
The column index of the anchor cell for the span (at which spanned cells start).
The sheet area.
Removes the span that contains a specified anchor cell from a range of cells in the specified sheet area.
Syntax
'Declaration
 
Public Overloads Sub RemoveSpanCell( _
   ByVal row As System.Integer, _
   ByVal column As System.Integer, _
   ByVal sheetArea As SheetArea _
) 
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim column As System.Integer
Dim sheetArea As SheetArea
 
instance.RemoveSpanCell(row, column, sheetArea)
public void RemoveSpanCell( 
   System.int row,
   System.int column,
   SheetArea sheetArea
)

Parameters

row
The row index of the anchor cell for the span (at which spanned cells start).
column
The column index of the anchor cell for the span (at which spanned cells start).
sheetArea
The sheet area.
Example
This example uses the RemoveSpanCell method.
gcSpreadSheet1.Sheets[0].AddSpanCell(1, 1, 3, 3);
gcSpreadSheet1.Invalidate();
      
private void button1_Click(object sender, RoutedEventArgs e)
  {
       // gcSpreadSheet1.Sheets[0].RemoveSpanCell(1, 1);
        gcSpreadSheet1.Sheets[0].RemoveSpanCell(1, 1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells);
        gcSpreadSheet1.Invalidate();
   }
GcSpreadSheet1.Sheets(0).AddSpanCell(1, 1, 3, 3)
GcSpreadSheet1.Invalidate()

Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
' GcSpreadSheet1.Sheets(0).RemoveSpanCell(1, 1)
GcSpreadSheet1.Sheets(0).RemoveSpanCell(1, 1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells)
GcSpreadSheet1.Invalidate()
End Sub
See Also

Reference

Worksheet Class
Worksheet Members
Overload List