Skip to main content
Version: 20 R5 BETA

VP REMOVE TABLE

History
ReleaseChanges
19 R6Added

VP REMOVE TABLE ( vpAreaName : Object; tableName : Text {; options : Integer} {; sheet : Integer}} )

ParameterTypeDescription
vpAreaNameText->View Pro area name
tableNameText->Name of the table to remove
optionsInteger->Additional options
sheetInteger->Sheet index (current sheet if omitted)

Description

The VP REMOVE TABLE command removes a table that you created with VP CREATE TABLE.

In vpAreaName, pass the name of the area where the table to remove is located.

In tableName, pass the name of the table to remove.

In options, you can specify additional behavior. Possible values are:

ConstantValueDescription
vk table remove all0Remove all including style and data
vk table remove style1Remove style but keep data
vk table remove data2Remove data but keep style

Table names are defined at sheet level. You can specify where the table is located using the optional sheet parameter (indexing starts at 0).

Example

To remove the "people" table in the second sheet and keep the data in the cells:

VP REMOVE TABLE("ViewProArea"; "people"; vk table remove style; 2)

See also

VP CREATE TABLE