Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 757 Bytes

File metadata and controls

39 lines (30 loc) · 757 Bytes

Volume2Str

Description

Convert a volume value (in cubic millimeters) from a real number to a string using the current document formatting.

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

Parameters

Name Type Description
value REAL The volume value in cubic millimeters.

Examples

resultStr := Volume2Str(1.0);
import vs

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

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

Version

Availability: from Vectorworks 2014

Category