Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 743 Bytes

File metadata and controls

39 lines (30 loc) · 743 Bytes

Area2Str

Description

Convert an area value (in square millimeters) from a real number to a string using the current document formatting.

FUNCTION Area2Str(value : REAL): STRING;
def vs.Area2Str(value):
    return STRING

Parameters

Name Type Description
value REAL The area value in square millimeters

Examples

resultStr := Area2Str(1.0);
import vs

# Convert an area value (in square millimeters) from a real number to a
# string using the current document formatting.
value = 1.0

text = vs.Area2Str(value)
vs.Message('Area2Str returned: ' + str(text))

Version

Availability: from Vectorworks 2014

Category