UmraFormProject.GetFormTable
long GetFormTable([in] BSTR * FormTableName, [in] IUnknown * pFormTable)
Argument
|
Type
|
Description
|
FormTableName
|
In
|
The name of the form table as defined in the UMRA form.
|
pFormTable
|
In/out
|
The retrieved form table. The argument must be specified as one of the other UMRA COM object types: UmraFormTable. This COM object can then be used to access the data of the table.
|
The interface method retrieves the table of a form. When the form of an UMRA Form project contains a table, this method is used to access the table of the form. To access the form table, a special UMRA COM object is used: UmraFormTable. An instance of such a COM object must be passed as one of the arguments of this method. Before this method is called, the method Umra.LoadFormProject must be executed first. On success, the form table data is copied into the passed COM object. The interface methods of the UmraFormTable object can then be used to access the table data.
On success, the method returns zero. If the form table is not found in the UMRA project maintained by the UMRA COM object, a non-zero value is returned.
|