GetConfigurationFromPageField method: DZPage class

Syntax

GetConfigurationFromPageField(FldTabOrder)

Description

Use the GetConfigurationFromPageField method to return the drop zone configurations for the specified page field as an array of DZComponentConfig objects.

Parameters

Parameter Description

FldTabOrder

Specifies the page field tab order for the drop zone group box as a string value.

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.GetConfigurationFromPageField("2");

Local integer &i;
For &i = 1 To &arrDzConfig.Len
   /* Do something with the fetched configurations. */
End-For;