Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 801 Bytes

File metadata and controls

39 lines (29 loc) · 801 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