VP INSERT TABLE COLUMNS
História
Release | Mudanças |
---|---|
18 R6 | Adicionado |
VP INSERT TABLE COLUMNS ( vpAreaName : Text ; tableName : Text ; column : Integer {; count : Integer {; insertAfter : 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 inserir | |
count | Text | -> | Número de colunas a adicionar (tem de ser >0) | |
insertAfter | Integer | -> | vk table insert before ou vk table insert after coluna | |
sheet | Integer | -> | Índice da folha (folha atual se omitida) |
Descrição
The VP INSERT TABLE COLUMNS
command inserts one or count empty column(s) in the specified tableName at the specified column index.
When a column has been inserted with this command, you typically modify its contents using the VP SET TABLE COLUMN ATTRIBUTES command.
In the insertAfter parameter, you can pass one of the following constants to indicate if the column(s) must be inserted before or after the column index:
Parâmetros | Valor | Descrição |
---|---|---|
vk table insert before | 0 | Insert column(s) before the column (default if omitted) |
vk table insert after | 1 | Inserir coluna(s) após a coluna |
This command inserts some columns in the tableName table, NOT in the sheet. O número total de colunas da folha não é impactado pelo comando. Dados presentes à direita da tabela (se houver) são movidos para a direita automaticamente de acordo com o número de colunas adicionadas.
If tableName does not exist or if there is not enough space in the sheet, nothing happens.
Exemplo
Consulte os exemplos de VP INSERT TABLE ROWS e VP SET TABLE COLUMN ATTRIBUTES.
Veja também
VP INSERT TABLE ROWS
VP REMOVE TABLE COLUMNS
VP SET TABLE COLUMN ATTRIBUTES