Removes the Story Level matching 'levelType' from a Story. If 'bDeleteLayer' is true and the Story Level has an associated layer, the layer will be deleted as well.
FUNCTION RemoveStoryLevel(
storyHandle : HANDLE;
levelType : STRING;
bDeleteLayer : BOOLEAN): BOOLEAN;def vs.RemoveStoryLevel(storyHandle, levelType, bDeleteLayer):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| storyHandle | HANDLE | The handle of the story we want to deleted a Story Level from. |
| levelType | STRING | The level type of the Story Level we want to remove from 'storyHandle'. |
| bDeleteLayer | BOOLEAN | If this is true, and the requested Story Level has a layer associated with it, the layer will be deleted as well. |
VAR
storyHandle : HANDLE
success:BOOLEAN
BEGIN
storyHandle := CreateStory('Floor 1', '-1');
success := RemoveStoryLevel(storyHandle, 'Finish Floor', TRUE);VS Functions: CreateStory | AddStoryLevel | AddLevelFromTemplate | SetLevelElevation | GetLevelElevation
Availability: from Vectorworks 2015