Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 873 Bytes

File metadata and controls

43 lines (33 loc) · 873 Bytes

GetStoryElevationN

Description

Returns the elevaton of the indicated Story. The elevation is in document units.

FUNCTION GetStoryElevationN(story : HANDLE): REAL;
def vs.GetStoryElevationN(story):
    return REAL

Parameters

Name Type Description
story HANDLE The Story whose elevation is desired.

Examples

resultVal := GetStoryElevationN(story);
import vs

# Returns the elevaton of the indicated Story.
story = vs.FSActLayer()  # handle to the first selected object on the active layer

value = vs.GetStoryElevationN(story)
vs.Message('GetStoryElevationN returned: ' + str(value))

See Also

VS Functions: CreateStory | SetStoryElevationN

Version

Availability: from Vectorworks 2025

Category