Saltar al contenido principal
Versión: Siguiente

VP IMPORT FROM OBJECT

Historia
LanzamientoModificaciones
20 R9Support of paramObj parameter

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

ParámetrosTipoDescripción
vpAreaNameText->Nombre de objeto formulario área 4D View Pro
viewProObject->Objeto 4D View Pro
paramObjObject->(Optional) import options

Descripción

El comando VP IMPORT FROM OBJECT importa y muestra el objeto viewPro de 4D View Pro en el área vpAreaName de 4D View Pro. El contenido del objeto importado sustituye todos los datos insertados en el área.

En vpAreaName, pase el nombre del área 4D View Pro. Si pasa un nombre que no existe, se devuelve un error.

En viewPro, pase un objeto 4D View Pro válido. Este objeto puede haber sido creado utilizando VP Export to object o manualmente. Para más información sobre los objetos 4D View Pro, consulte la sección Objeto 4D View Pro.

Se devuelve un error si el objeto viewPro no es válido.

In paramObj, you can pass the following property:

PropiedadTipoDescripción
formula4D.Function(Optional) Callback function to be executed when the object is loaded and all 4D custom functions have responded. Ver Pasar un método de retrollamada (fórmula).

Los siguientes parámetros se pueden utilizar en el método de retrollamada:

ParámetrosTipoDescripción
param1TextEl nombre del objeto de área 4D View Pro
param2TextReserved for compatibility, this parameter is always empty
param3ObjectReferencia al parámetro paramObj del comando
param4ObjectUn objeto devuelto por el método con un mensaje de estado
.successBooleanTrue if import was successful, False otherwise
.errorCodeIntegerCódigo de error
.errorMessageTextMensaje de error
nota

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.

Ejemplo

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

Ver también

VP Export to object