Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 828 Bytes

File metadata and controls

43 lines (32 loc) · 828 Bytes

GetStoryAbove

Description

Returns the Story above the indicated Story. Returns NULL if there is none. If passed a NULL handle, returns the top-most Story in the current drawing.

FUNCTION GetStoryAbove(story : HANDLE): HANDLE;
def vs.GetStoryAbove(story):
    return HANDLE

Parameters

Name Type Description
story HANDLE The indicated Story for which the Story above it is desired.

Examples

VAR

baseStory:HANDLE;
storyAbove:HANDLE;

BEGIN

baseStory := GetStoryOfLayer(ActLayer);
storyAbove := StoryAbove(baseStory);

See Also

VS Functions: GetStoryBelow | GetNumStories | GetStoryOfLayer

Version

Availability: from Vectorworks 2012

Category