SilverScreen Solid Modeler

panel_message

panel_message

Previous topic Next topic  

panel_message

Previous topic Next topic JavaScript is required for the print function  

SilverScreenAPI

 

void panel_message ( char *message )

 

char *message;       // message string

 

 

 




Synopsis

#include "silver.h"

 

The panel_message function displays a message at the center of the screen inside a panel. The messages may extend over several lines. Individual lines of the message are delimited by the vertical bar, for example: "First line|Second line|Third line". The message disappears when a key or a button is pressed.

 

 

Parameters

message is a null-terminated string containing the message lines.

 

 

Return Value

none.

 

 

Example

C / C++ Code

 

panel_message ("First line|Second line|Third line");