GetConfiguration method: DZContent class

Syntax

GetConfiguration()

Description

Use the GetConfiguration method to return an array of DZComponentConfig objects representing all of the components system wide where this subpage has been configured.

Parameters

None.

Returns

An array of DZComponentConfig objects.

Example

import PTCS_DROPZONE:*;

Local PTCS_DROPZONE:DZContent &dzContent = create PTCS_DROPZONE:DZContent("MY_SUBPAGE_SBF");
Local array of PTCS_DROPZONE:DZComponentConfig &arrDzCompConfig = &dzContent.GetConfiguration();

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