Saltar para o conteúdo principal
Versão: Próximo

VP Get column count

VP Get column count ( vpAreaName : Text { ; sheet : Integer } ) : Integer

ParâmetroTipoDescrição
vpAreaNameText->Nome da área 4D View Pro no formulário
sheetInteger->Índice da folha (folha atual se omitida)
ResultadosInteger<-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")

Veja também

VP Get row count
VP SET COLUMN COUNT
VP SET ROW COUNT