Livecode Wiki
Advertisement

Reports the IDs of all the children of a group.Syntax:

get the childControlIDs of <group>

Examples:

put the childControlIDs of group "list"

Use the childControlIDs property to get a list of the short ids of all the direct children of a group

Each line of the childControlIDs is the short id of a control which is a direct child of the group, the property does not recurse into subgroups.

Parameters:

  • group: A reference to a group
  • Value: The childControlIDs of a group reports a list of the short idproperties of the direct children of a group. This property is read-onlyand cannot be set.

See also: groupIDs (property),

Advertisement