VP REMOVE TABLE COLUMNS
História
Release | Mudanças |
---|---|
18 R6 | Adicionado |
VP REMOVE TABLE COLUMNS ( vpAreaName : Text ; tableName : Text ; column : Integer {; count : Integer {; sheet : Integer }}} )
Parâmetro | Tipo | Descrição | ||
---|---|---|---|---|
vpAreaName | Text | -> | Nome de objeto formulário área 4D View Pro | |
tableName | Text | -> | Nome da tabela | |
column | Integer | -> | Índice na tabela da coluna inicial a remover | |
count | Integer | -> | Número de colunas a remover (tem de ser >0) | |
sheet | Integer | -> | Í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. Os dados presentes à direita da tabela (se houver) são automaticamente movidos para a esquerda conforme o número de colunas removidas.
Se tableName não existir, não acontece nada.
Exemplo
Para remover duas colunas da 3.ª coluna da tabela "dataTable":
VP REMOVE TABLE COLUMNS("ViewProArea"; "dataTable"; 3; 2)