VP Get tables
História
Release | Mudanças |
---|---|
18 R6 | Adicionado |
VP Get tables ( vpAreaName : Text { ; sheet : Integer } ) : Collection
Parâmetro | Tipo | Descrição | ||
---|---|---|---|---|
vpAreaName | Text | -> | Nome de objeto formulário área 4D View Pro | |
sheet | Integer | -> | Índice da folha (folha atual se omitida) | |
Resultados | Collection | <- | Coleção de texto com todos os nomes das tabelas |
Descrição
The VP Get tables
command returns a collection of all table names defined in the sheet.
Em vpAreaName, passe o nome da área 4D View Pro.
Em sheet, passe o índice da folha de destino. Se nenhum índice for especificado, o comando se aplica à folha atual.
A indexação começa em 0.
Exemplo
O código abaixo devolverá uma coleção de todos os nomes de tabelas da folha atual:
$tables:=VP Get tables("ViewProArea")
//$tables contém por exemplo ["contextTable","emailTable"]