GetConfigurationFromPageName method: DZPage class
Syntax
GetConfigurationFromPageName()
Description
Use the GetConfigurationFromPageName method to return the drop zone configurations for the current page as an array of DZComponentConfig objects.
Parameters
None.
Returns
An array of DZComponentConfig objects.
Example
import PTCS_DROPZONE:*;
Local PTCS_DROPZONE:DZPage &dzPage = create PTCS_DROPZONE:DZPage("EX_SHEET_HDR_FL");
Local array of PTCS_DROPZONE:DZComponentConfig &arrDzConfig = &dzPage.GetConfigurationFromPageName();
Local integer &i;
For &i = 1 To &arrDzConfig.Len
/* Do something with the fetched configurations. */
End-For;