Aller au contenu principal
Version: Next

VP Cell

VP Cell ( vpAreaName ; column : Integer ; row : Integer ; Text { ; sheet : Integer } ) : Object

ParamètresTypeDescription
vpAreaNameText->Nom d'objet formulaire zone 4D View Pro
columnLongint->Indice de la colonne
rowLongint->Indice de la ligne
sheetInteger->Numéro d'indice de la feuille (feuille courante si omis)
RésultatObject<-Objet plage d'une seule cellule

Description

The VP Cell command returns a new range object referencing a specific cell.

Cette commande s'applique aux plages d'une seule cellule. To create a range object for multiple cells, use the VP Cells command.

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

The column parameter defines the column of the cell range's position. Passez l'indice de la colonne dans ce paramètre.

The row parameter defines the row of the cell range's position. Passez l'indice de la ligne dans ce paramètre.

In the optional sheet parameter, you can indicate the index of the sheet where the range will be defined. If omitted or if you pass vk current sheet, the current spreadsheet is used by default.

l'indexation démarre à 0.

Exemple

Vous souhaitez définir une plage pour la cellule de la feuille courante (sur la feuille courante) :

vp-cell

Le code est le suivant :

$cell:=VP Cell("ViewProArea";2;4) // C5

Voir également

VP All
VP Cells
VP Column
VP Combine ranges
VP Name
VP Row