[]
Used to release resources of the control before removing of it.
void Removing(C1FlexGrid parentGrid, int rowIndex)
Type | Name | Description |
---|---|---|
C1FlexGrid | parentGrid | FlexGrid which displays detail control. |
int | rowIndex | Index of parent detail row. |
If Setup method did not initialize any resources, the body of Removing(C1FlexGrid, int) method might be empty.
The code below shows the basic implementation of Removing method:
void IC1FlexGridRowDetail.Removing(C1FlexGrid parentGrid, int rowIndex)
{
// No resources to release
}