Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 829 Bytes

File metadata and controls

43 lines (33 loc) · 829 Bytes

GetStoryElevation

Description

Returns the elevaton of the indicated Story.

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

Parameters

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

Examples

resultVal := GetStoryElevation(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.GetStoryElevation(story)
vs.Message('GetStoryElevation returned: ' + str(value))

See Also

VS Functions: CreateStory | SetStoryElevation

Version

Availability: from Vectorworks 2012

Category