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| Name | Type | Description |
|---|---|---|
| value | REAL | The volume value in cubic millimeters. |
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))Availability: from Vectorworks 2014