bgiGetGizmoNodeText

Gets the text of a specific node in a TreeView control. Takes gizmoNode (Int) and parentTreeview (Int). Returns the result.

BGI GUI

Parameters & Returns

Parameters

gizmoNode Int
parentTreeview Int

Returns

String

Quick Summary

Gets the text of a specific node in a TreeView control. Takes gizmoNode (Int) and parentTreeview (Int). Returns the result.

Technical Exegesis...

Gets the text of a specific node in a TreeView control. Searches gizmoMap for parentTreeview ID to get TreeView HWND. Searches treeviewNodes vector for gizmoNode ID to find the node's HTREEITEM handle. If both found, calls GetTreeViewItemText helper function with parentHWND and hTargetNode, returns the result. Returns empty string if TreeView not found or node not found.

This function retrieves the display text of a TreeView node.

Example

Example.bam
; No example implemented yet