Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

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

x_element

Handle for the setup database element.

Value Returned

l_children

A list that contains the following:

  • A handle to all history entries in the history group
  • A list of names of all the history entries.

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
 ⠀
X