Region :: removeColumn - Remove column from region
The function removes the column with the identifier passed in iColumnID from the region.
After changing a list definition by removing columns or regions, the region has to be refreshed by calling refresh().
Implementation overview
- Remove column by column ID
Region :: removeColumn ( iColumnID ) - Remove column by resource name
Region :: removeColumn ( sName, iColumnID )
Implementation details
-
Remove column by column ID
Region  :: removeColumn ( int64 iColumnID )
- iColumnID
- Column identifier
The column identifier is either the resource identity for the column definition (in case the column has been created from an external resource) or the internal column identifier returned from the ControlContext::addColumn() function.
to list
- iColumnID
- Column identifier
-
Remove column by resource name
Region  :: removeColumn ( odaba::String &sName, int64 iColumnID )
- sName
- Resource or entity name
The name refers to a design or GUI resource.
- iColumnID
- Column identifier
The column identifier is either the resource identity for the column definition (in case the column has been created from an external resource) or the internal column identifier returned from the ControlContext::addColumn() function.
to list
- sName
- Resource or entity name

