Region :: columnId - Column id for region
The function returns the column identifier for a region column. When no column could be found, the function returns 0,
The region identifier is either the resource identity for the region definition (in case the region has been created from an external resource defined in a resource database) or the internal column identifier returned from the ControlContext::addRegion() function.
Implementation overview
- Get column id for region by name
Region :: columnId ( sName ) - Get column id for region at position
Region :: columnId ( iPosition )
Implementation details
-
Get column id for region by name
int64 Region  :: columnId ( odaba::String &sName )
The function returns the column identifier for the region column with name passed in sName. When no column with nam sName exists, the function returns 0.
- sName
- Resource or entity name
The name refers to a design or GUI resource.
to list
- sName
- Resource or entity name
-
Get column id for region at position
int64 Region  :: columnId ( int32 iPosition )
The function returns the column identifier for the region column at position passed in nPosition. When nPosition is invalid, the function returns 0.
- iPosition
- Position in collection
The position of an entry in a collection or list is the number of the entry in the collection beginning with 0 for the first entry.
to list
- iPosition
- Position in collection