VP REMOVE TABLE ROWS
História
Release | Mudanças |
---|---|
18 R6 | Adicionado |
VP REMOVE TABLE ROWS ( vpAreaName : Text ; tableName : Text ; row : 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 | |
row | Integer | -> | Índice na tabela da linha inicial a remover | |
count | Text | -> | Número de linhas a remover (tem de ser >0) | |
sheet | Integer | -> | Índice da folha (folha atual se omitida) |
Descrição
The VP REMOVE TABLE ROWS
command removes one or count row(s) from the specified tableName at the specified row index. O comando remove valores e estilos.
This command removes rows from the tableName table, NOT from the sheet. O número total de linhas da folha não é impactado pelo comando. Dados presentes abaixo da tabela (se houver) são movidos automaticamente de acordo com o número de linhas removidas.
If the tableName table is bound to a data context, the command removes element(s) from the collection.
Se tableName não existir, não acontece nada.
Exemplo
Para remover duas linhas da 3.ª linha da tabela "dataTable":
VP REMOVE TABLE ROWS("ViewProArea"; "dataTable"; 3; 2)