Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / AddSpanCell Method / AddSpanCell(Int32,Int32,Int32,Int32) Method
The row index of the cell at which to start the span.
The column index of the cell at which to start the span.
The number of rows to span.
The number of columns to span.


In This Topic
    AddSpanCell(Int32,Int32,Int32,Int32) Method
    In This Topic
    Adds a span of cells in this sheet in the specified sheet area.
    Syntax
    'Declaration
     
    Public Overloads Sub AddSpanCell( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
     
    instance.AddSpanCell(row, column, rowCount, columnCount)
    public void AddSpanCell( 
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    row
    The row index of the cell at which to start the span.
    column
    The column index of the cell at which to start the span.
    rowCount
    The number of rows to span.
    columnCount
    The number of columns to span.
    See Also