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 | Text | -> | 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. The total number of columns of the sheet is not impacted by the command.
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)