Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 891 Bytes

File metadata and controls

38 lines (28 loc) · 891 Bytes

WriteMac

Description

Outputs the specified data to an ASCII text file. The variable length parameter list specifies the data to be written to the file.

Parameters may be any valid data type, and data types may be mixed in a single call to the procedure. WriteMac leaves the file pointer positioned at the end of the last data value written to the file; any data subsequently written to the file will be appended to the end of this value.

See the VectorScript Language Guide for details on formatting values using WriteLn.

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

Parameters

Name Type Description
z ANY

Examples

VectorScript

WriteMac(Value1);

Python

Version

Availability: from VectorWorks9.0

Category