Skip to main content
Version: 20 R6 BETA

VP REMOVE SHEET

VP REMOVE SHEET ( vpAreaName : Text ; index: Integer )

ParameterTypeDescription
vpAreaNameText->4D View Pro area form object name
indexInteger->Index of the sheet to remove

Description

The VP REMOVE SHEET command removes the sheet with the specified index from the document loaded in vpAreaName.

In vpAreaName, pass the name of the 4D View Pro area.

In index, pass the index of the sheet to remove. If the passed index does not exist, the command does nothing.

Indexing starts at 0.

Example

The document currently has three sheets:

Remove the third sheet:

VP REMOVE SHEET("ViewProArea";2)

See also

VP ADD SHEET