Saltar para o conteúdo principal
Versão: Próximo

VP REMOVE TABLE

História
ReleaseMudanças
19 R6Adicionado

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

ParâmetroTipoDescrição
vpAreaNameText->Nome da área View Pro
tableNameText->Nome da tabela a remover
optionsInteger->Opções adicionais
sheetInteger->Índice da folha (folha atual se omitida)

Descrição

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

Em vpAreaName, passe o nome da área onde a tabela a ser removida está localizada.

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

In options, you can specify additional behavior. Valores possíveis:

ParâmetrosValorDescrição
vk table remove all0Remover tudo, incluindo o estilo e os dados
vk table remove style1Remover o estilo, mas manter os dados
vk table remove data2Remover dados, mas manter o estilo

Os nomes das tabelas são definidos ao nível da folha. You can specify where the table is located using the optional sheet parameter (indexing starts at 0).

Exemplo

Para remover a tabela "pessoas" na segunda folha e manter os dados nas células:

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

Veja também

VP CREATE TABLE