VP Get column count
VP Get column 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 colunas |
Descrição
The VP Get column count
command returns the total number of columns 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 column 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 colunas na área 4D View Pro:
C_INTEGER($colCount)
$colCount:=VP Get column count("ViewProarea")