axlGetHistoryGroupChildren
axlGetHistoryGroupChildren(x_element) =>l_children
Description
Returns a list containing a handle to all history children entries in the history group and a list of names of all the history children entries.
Arguments
Value Returned
Examples
Returns a list containing a handle to all history children entries in the history group Group.0 and a list of names of all the history children entries
data_sdb = axlGetMainSetupDB(axlGetWindowSession())
axlGetHistoryGroup( data_sdb "Group.0" )
=> 1169
axlGetHistoryGroupChildren( 1169 )
=> (1172 ("Group.0.Run.0" "Group.0.Run.1" "Group.0.Run.2"))
Here, 1172 is the handle to the history entries and Group.0.Run.0, Group.0.Run.1, and Group.0.Run.2 are the names of history entries.
Return to top