Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 774 Bytes

File metadata and controls

40 lines (29 loc) · 774 Bytes

Message

Description

Procedure Message displays a floating message palette onscreen. Parameters z1 thru zN specify the values to be displayed in the palette. Parameters can be any supported data type or variables.

If Message is called and the palette is already displayed, the value in the palette will be replaced by the new information.

PROCEDURE Message(z : ANY);
def vs.Message(z):
    return None

Parameters

Name Type Description
z ANY

Examples

==== VectorScript ====

Message('Hello, world');

Message('The Number of objects was :',theNumber);
{displays a string using the variable value}

==== Python ====

Version

Availability: from All Versions

Category

  • Utility