GrapeCity.Xaml.SpreadSheet.Data
RemoveSpanCell(Int32,Int32) Method
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class > RemoveSpanCell Method : RemoveSpanCell(Int32,Int32) 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).
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 Integer, _
   ByVal column As Integer _
) 
'Usage
 
Dim instance As Worksheet
Dim row As Integer
Dim column As Integer
 
instance.RemoveSpanCell(row, column)
public void RemoveSpanCell( 
   int row,
   int column
)

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).
Example
This example uses the RemoveSpanCell method.
gcSpreadSheet1.Sheets[0].AddSpanCell(1, 1, 3, 3);
      
private void Button_Click_1(object sender, RoutedEventArgs e)
  {
       // gcSpreadSheet1.Sheets[0].RemoveSpanCell(1, 1);
        gcSpreadSheet1.Sheets[0].RemoveSpanCell(1, 1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells);       
   }
GcSpreadSheet1.Sheets(0).AddSpanCell(1, 1, 3, 3)

Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
' GcSpreadSheet1.Sheets(0).RemoveSpanCell(1, 1)
GcSpreadSheet1.Sheets(0).RemoveSpanCell(1, 1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells)
End Sub
See Also

Reference

Worksheet Class
Worksheet Members
Overload List