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


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class > GetSpanCell Method : GetSpanCell(Int32,Int32) Method
The row index.
The column index.
Gets the range of cells that are spanned at a specified cell in this sheet.
Syntax
'Declaration
 
Public Overloads Function GetSpanCell( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As CellRange
'Usage
 
Dim instance As Worksheet
Dim row As Integer
Dim column As Integer
Dim value As CellRange
 
value = instance.GetSpanCell(row, column)
public CellRange GetSpanCell( 
   int row,
   int column
)

Parameters

row
The row index.
column
The column index.

Return Value

Returns a CellRange object that contains the span information, or null if no span exists.
Example
This example uses the GetSpanCell method.
gcSpreadSheet1.Sheets[0].AddSpanCell(1, 1, 3, 3);
      
private void Button_Click_1(object sender, RoutedEventArgs e)
  {
       GrapeCity.Xaml.SpreadSheet.Data.CellRange r;
       r = gcSpreadSheet1.Sheets[0].GetSpanCell(1, 1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells);
      // r = gcSpreadSheet1.Sheets[0].GetSpanCell(1, 1);
      listBox1.Items.Add(r.Column.ToString());      
   }
GcSpreadSheet1.Sheets(0).AddSpanCell(1, 1, 3, 3)

    Private Sub Button_Click_1(sender As Object, e As RoutedEventArgs)
        Dim r As GrapeCity.Xaml.SpreadSheet.Data.CellRange
        r = GcSpreadSheet1.Sheets(0).GetSpanCell(1, 1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells)
        'r = GcSpreadSheet1.Sheets(0).GetSpanCell(1, 1)
        ListBox1.Items.Add(r.Column.ToString())       
    End Sub
See Also

Reference

Worksheet Class
Worksheet Members
Overload List