vtk_nodestatus
vtk_nodestatus_get_color
Usage:         
vtk_nodestatus_get_color nodeStatus
Description:   
This procedure get the color corresponding to the given status in the format "#xxxxxx" 
Examples: 
vtk_nodestatus_get_color VALID 
#70B070 
vtk_nodestatus_get_color FAILED 
#FF0000
Returns:       
A string.
vtk_nodestatus_get_mask
Usage:         
vtk_nodestatus_get_mask nodeStatus1 ...
Description:   
This procedure generates mask values to be used with the @STATUSMASK@ field. 
Examples:
vtk_nodestatus_get_mask VALID 
1 
vtk_nodestatus_get_mask FAILED INVALID 
130
Returns:       
An integer
vtk_nodestatus_get_ncname
Usage:         
vtk_nodestatus_get_ncname nodeStatus isScheduledFlag isSuspendedFlag
Description:   
This procedure generate the name of the status for network computing. 
Examples:
vtk_nodestatus_get_ncname SCHEDULED 
Queued 
vtk_nodestatus_get_ncname RUNNING 0 1 
SuspendedRT
vtk_nodestatus_get_ncname INVALID 0 0 1
OnDemand
Returns:       
An integer
vtk_nodestatus_set_color
Usage:         
vtk_nodestatus_set_color nodeStatus bgColor fgColor
Description:   
Set a new color for nodestatus. To change colors of transitions, use vtk_transition_color_control 
Examples:
vtk_nodestatus_set_color VALID blue white
Returns:       
A string.