FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / IC1FlexGridRowDetail Interface / Removing Method
FlexGrid which displays detail control.
Index of parent detail row.
Example

In This Topic
    Removing Method (IC1FlexGridRowDetail)
    In This Topic
    Used to release resources of the control before removing of it.
    Syntax
    'Declaration
     
    
    Sub Removing( _
       ByVal parentGrid As C1FlexGrid, _
       ByVal rowIndex As Integer _
    ) 
    void Removing( 
       C1FlexGrid parentGrid,
       int rowIndex
    )

    Parameters

    parentGrid
    FlexGrid which displays detail control.
    rowIndex
    Index of parent detail row.
    Remarks
    If Setup method did not initialize any resources, the body of Removing method might be empty.
    Example
    The code below shows the basic implementation of Removing method:
    void IC1FlexGridRowDetail.Removing(C1FlexGrid parentGrid, int rowIndex) 
    { 
        // No resources to release 
    }
    See Also