nca_tree_expand_item

Tree Object Functions

Expands a tree node.

int nca_tree_expand_item( LPCSTR name, LPCSTR item );
name The logical name of the tree object.
node The node to expand.

The nca_tree_expand_item function expands a node in an Oracle NCA tree.

Return Values

Oracle NCA Error Codes

Parameterization

All arguments of this function may be parameterized using standard parameterization.

Example

In the following example, nca_tree_expand_item expands the Data Entry node in the QUERY_TREE_TREE_0 tree object.

nca_set_window("Shipping Transactions");

nca_tree_select_item("QUERY_TREE_TREE_0", "Data Entry");
nca_tree_expand_item("QUERY_TREE_TREE_0", "Data Entry");
nca_tree_activate_item("QUERY_TREE_TREE_0", "Data Entry");

nca_tree_select_item("QUERY_TREE_TREE_0", "Trip Data Entry");
nca_tree_activate_item("QUERY_TREE_TREE_0", "Trip Data Entry");