Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / RemoveColumnHeaderSpanCell Method
Row index of anchor cell for span (at which spanned cells started)
Column index of anchor cell for span (at which spanned cells started)
Example


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

    Parameters

    row
    Row index of anchor cell for span (at which spanned cells started)
    column
    Column index of anchor cell for span (at which spanned cells started)
    Example
    This example removes the specified span from the column header.
    fpSpread1.ActiveSheet.ColumnHeaderRowCount = 4; 
    fpSpread1.ActiveSheet.AddColumnHeaderSpanCell(0, 0, 2, 2);
    
    private void button1_Click(object sender, System.EventArgs e)
    {
    fpSpread1.ActiveSheet.RemoveColumnHeaderSpanCell(0, 0);
    }
    
    
    FpSpread1.ActiveSheet.ColumnHeaderRowCount = 4 
    FpSpread1.ActiveSheet.AddColumnHeaderSpanCell(0, 0, 2, 2)
    
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
    System.EventArgs) Handles Button1.Click
    FpSpread1.ActiveSheet.RemoveColumnHeaderSpanCell(0, 0)
    End Sub
    
    See Also