VP Get row count
VP Get row count ( vpAreaName : Text {; sheet : Integer } ) : Integer
Parâmetro | Tipo | Descrição | ||
---|---|---|---|---|
vpAreaName | Text | -> | Nome da área 4D View Pro no formulário | |
sheet | Integer | -> | Índice da folha (folha atual se omitida) | |
Resultados | Integer | <- | Número total de linhas |
Descrição
The VP Get row count
command returns the total number of rows from the designated sheet.
Em vpAreaName, passe o nome da propriedade da área 4D View Pro. Se passar um nome que não existe, é devolvido um erro.
You can define where to get the row count in the optional sheet parameter using the sheet index (counting begins at 0). Se omitido ou se você passar vk current sheet
, a planilha atual será usada.
Exemplo
O código seguinte retorna o número de linhas na área 4D View Pro:
var $rowCount : Integer
$rowCount:=VP Get row count("ViewProarea")