TmEnumerateGraelMethods Function
Obtain a list of all the methods set for a graphical element in a specified VDA Tool.
Usage
methods = TmEnumerateGraelMethods(tool_name, grael_name)
Parameters
tool_name—A string containing the unique name of a VDA Tool.
grael_name—A string containing the name of a graphical element associated with the VDA Tool.
Returned Value
methods—A string array containing the names of all the methods registered for a graphical element in the specified VDA Tool.
Keywords
None.
Example
This command lists all the methods associated with an axis. By convention, methods always begin with “TM_”.
PRINT, TmEnumerateGraelMethods('WzPlot_0', 'AXIS_0')
   TM_HIGHLIGHT TM_DIALOG TM_CODEGEN TM_STARTMOVE TM_CONVERT
   TM_DISPLAY TM_SELECTGRAEL TM_UNHIGHLIGHT TM_RELOCATE
See Also