Skip to main content
Version: Next

VP IMPORT FROM OBJECT

History
ReleaseChanges
20 R9Support of paramObj parameter

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

ParameterTypeDescription
vpAreaNameText->4D View Pro area form object name
viewProObject->4D View Pro object
paramObjObject->(Optional) import options

Description

The VP IMPORT FROM OBJECT command imports and displays the viewPro 4D View Pro object in the vpAreaName 4D View Pro area. The imported object contents replaces any data already inserted in the area.

In vpAreaName, pass the name of the 4D View Pro area. If you pass a name that does not exist, an error is returned.

In viewPro, pass a valid 4D View Pro object. This object can have been created using VP Export to object or manually. For more information on 4D View Pro objects, please refer to the 4D View Pro object section.

An error is returned if the viewPro object is invalid.

In paramObj, you can pass the following property:

PropertyTypeDescription
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).

The following parameters can be used in the callback method:

ParameterTypeDescription
param1TextThe name of the 4D View Pro area object
param2TextReserved for compatibility, this parameter is always empty
param3ObjectA reference to the command's paramObj parameter
param4ObjectAn object returned by the method with a status message
.successBooleanTrue if import was successful, False otherwise
.errorCodeIntegerError code
.errorMessageTextError message
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.

Example

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.")

See also

VP Export to object