VP SET ROW COUNT
VP SET ROW COUNT ( vpAreaName : Text ; rowCount : Integer { ; sheet : Integer } )
Parâmetro | Tipo | Descrição | ||
---|---|---|---|---|
vpAreaName | Text | -> | Nome de objeto formulário área 4D View Pro | |
rowCount | Integer | -> | Número de linhas | |
sheet | Integer | -> | Índice da folha (folha atual se omitida) |
Descrição
The VP SET ROW COUNT
command defines the total number of rows in vpAreaName.
Em vpAreaName, passe o nome da área 4D View Pro. Se passar um nome que não existe, é devolvido um erro.
Pass the total number of rows in the rowCount parameter. *rowCount tem de ser superior a 0.
In the optional sheet parameter, you can designate a specific spreadsheet where the rowCount will be applied (counting begins at 0). Se omitido, a planilha atual será utilizada por padrão. Você pode selecionar explicitamente a planilha atual com a seguinte constante:
vk current sheet
Exemplo
O código seguinte define cinco linhas na área 4D View Pro:
VP SET ROW COUNT("ViewProArea";5)