Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / RemoveSpanCell Method
Row index
Column index
Example


In This Topic
    RemoveSpanCell Method
    In This Topic
    Removes the span from a range of cells that contain a specified anchor cell.
    Syntax
    'Declaration
     
    
    Public Sub RemoveSpanCell( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
     
    instance.RemoveSpanCell(row, column)
    public void RemoveSpanCell( 
       int row,
       int column
    )

    Parameters

    row
    Row index
    column
    Column index
    Remarks

    You can remove a span range by calling this method, specifying the anchor cell of the span range to remove the range.

    When you remove a span range, the data that was previously in each of the cells in the span is re-displayed in the cell. The data was never removed from the cell, but simply hidden by the span range. Also, the cell types of the cells combined in the span are not changed.

    Create a span of cells by calling the AddSpanCell method. Return whether a cell is in a span range, and the size of the range if it is in one, by calling the GetSpanCell method.

    Example
    This example removes the span from the range of cells that contain the specified anchor cell.
    See Also