CwGetFirstToolName

Syntax:

sName = CwGetFirstToolName()

        sName           (string) The name of the first tool.

Description:

This function, along with CwGetNextToolName, is used to list all available tools. The entire list can be obtained by calling CwGetFirstToolName once and then CwGetNextToolName repeatedly until it returns an empty string. Each returned string is the name of another tool.

Example:

/* Obtain the list of available tools. */
count = 1
t = CwGetFirstToolName()

do while t \= ''
        tool.count = t
        t = CwGetNextToolName()
        count = count + 1
        end


Functions by NAME

Index

Functions by PURPOSE