Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 830 Bytes

File metadata and controls

43 lines (32 loc) · 830 Bytes

GetStoryBelow

Description

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

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

Parameters

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

Examples

VAR

baseStory:HANDLE;
storyBelow:HANDLE;

BEGIN

baseStory := GetStoryOfLayer(ActLayer);
storyBelow := StoryBelow(baseStory);

See Also

VS Functions: GetStoryAbove | GetNumStories | GetStoryOfLayer

Version

Availability: from Vectorworks 2012

Category