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

VP REMOVE TABLE COLUMNS

História
ReleaseMudanças
18 R6Adicionado

VP REMOVE TABLE COLUMNS ( vpAreaName : Text ; tableName : Text ; column : Integer {; count : Integer {; sheet : Integer }}} )

ParâmetroTipoDescrição
vpAreaNameText->Nome de objeto formulário área 4D View Pro
tableNameText->Nome da tabela
columnInteger->Índice na tabela da coluna inicial a remover
countText->Número de colunas a remover (tem de ser >0)
sheetInteger->Índice da folha (folha atual se omitida)

Descrição

The VP REMOVE TABLE COLUMNS command removes one or count column(s) in the specified tableName at the specified column index. O comando remove valores e estilos.

The command removes columns from the tableName table, NOT from the sheet. O número total de colunas da folha não é impactado pelo comando. The total number of columns of the sheet is not impacted by the command.

If tableName does not exist, nothing happens.

Exemplo

Para remover duas colunas da 3.ª coluna da tabela "dataTable":

VP REMOVE TABLE COLUMNS("ViewProArea"; "dataTable"; 3; 2)

Veja também

VP INSERT TABLE COLUMNS
VP REMOVE TABLE ROWS