Aller au contenu principal
Version: Suivant

VP IMPORT FROM OBJECT

Historique
ReleaseModifications
20 R9Support of paramObj parameter

VP IMPORT FROM OBJECT ( vpAreaName : Text { ; viewPro : Object { ; paramObj : Object} } )

ParamètresTypeDescription
vpAreaNameText->Nom d'objet formulaire zone 4D View Pro
viewProObject->Objet 4D View Pro
paramObjObject->(Optional) import options

Description

La commande VP IMPORT FROM OBJECT importe et affiche l'objet 4D View Pro viewPro dans la zone 4D View Pro vpAreaName. Le contenu de l'objet importé remplace toutes les données insérées auparavant dans la zone.

Dans vpAreaName, passez le nom de la zone 4D View Pro. Si vous passez un nom inexistant, une erreur est retournée.

Dans viewPro, passez un objet 4D View Pro valide. Cet objet peut avoir été créé en utilisant VP Export to object ou manuellement. Pour plus d'informations sur les objets 4D View Pro, veuillez consulter la section Objet 4D View Pro.

Une erreur est retournée si l'objet viewPro est invalide.

In paramObj, you can pass the following property:

PropriétéTypeDescription
formula4D.Function(Optional) Callback function to be executed when the object is loaded and all 4D custom functions have responded. See Passing a callback method (formula).

Les paramètres suivants peuvent être utilisés dans la méthode de rappel :

ParamètresTypeDescription
param1TextNom de l'objet 4D View Pro
param2TextReserved for compatibility, this parameter is always empty
param3ObjectUne référence au paramètre paramObj de la commande
param4ObjectObjet retourné par la méthode avec un message de statut
.successBooleanTrue if import was successful, False otherwise
.errorCodeIntegerCode d'erreur
.errorMessageTextMessage d'erreur
note

The callback function specified in the formula attribute is triggered after all 4D custom functions within the imported content have completed their calculations. This ensures that any dependent processes, such as document modifications or exports, are performed only after all formula-based computations are fully resolved.

Exemple

You want to import a spreadsheet that was previously saved in an object field, and trigger a callback function after all 4D custom functions have responded:

QUERY([VPWorkBooks];[VPWorkBooks]ID=10)

VP IMPORT FROM OBJECT("ViewProArea1"; [VPWorkBooks]SPBook; {formula: Formula(onImportComplete)})
// Method 'onImportComplete'
#DECLARE($name : Text; $path : Text; $paramObj : Object; $status : Object)
ALERT("The document has been imported, and all custom functions have finished processing.")

Voir également

VP Export to object