company logo

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,

Return value:  Region identification ( int64  )

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

Implementation details

  1. 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.

  2. to list
  3. 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.

  4. to list