Aller au contenu principal
Version: 20 R6 BETA

VP Get row count

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

ParamètresTypeDescription
vpAreaNameText->Nom d'objet formulaire zone 4D View Pro
sheetInteger->Numéro d'indice de la feuille (feuille courante si omis)
RésultatInteger<-Nombre total de lignes

Description

La commande VP Get row count retourne le nombre total de lignes de la sheet désignée.

In vpAreaName, pass the name property of the 4D View Pro area. Si vous passez un nom inexistant, une erreur est retournée.

You can define where to get the row count in the optional sheet parameter using the sheet index (counting begins at 0). Si le paramètre est omis ou si vous passez vk current sheet, la feuille courante est utilisée.

Exemple

Le code suivant retourne le nombre de lignes dans la zone 4D View Pro :

var $rowCount : Integer
$rowCount:=VP Get row count("ViewProarea")

Voir également

VP Get column count
VP SET COLUMN COUNT
VP SET ROW COUNT