SilverScreen Solid Modeler

pm_help_line

pm_help_line

Previous topic Next topic  

pm_help_line

Previous topic Next topic JavaScript is required for the print function  

SilverScreenAPI

 

int pm_help_line ( char *help_line )

 

char *help_line;   // help line string

 

 

 




Synopsis

#include "silver.h"

 

The pm_help_line function associates a single line of help text with a panel. This function may be called repeatedly, between invocations of pm_initialize and pm_execute , to build up a body of help information. When the panel is displayed, a help button will permit the user to display the help information in a pop-up panel.

 

 

Parameters

help_line is a null-terminated string containing a help line.

 

 

Return Value

none.

 

 

See Also

pm_execute , pm_help_file

 

 

Example

C / C++ Code

 

 pm_initialize ( "Panel Menu" );

 pm_help_line ( "This is the first line of help" );

 pm_help_line ( "This is the second line of help" );

 pm_help_line ( "This is the third line of help" );

 . . .

 if ( pm_execute () )

 . . .