IGxDocument.PageSettings

Syntax

PageSettings(SectionIndex: Integer): IGxPageSettings;

Parameters

SectionIndex. Section index.

Description

The PageSettings property returns the object that contains settings of the page, which index is passed by the SectionIndex parameter.

Example

Sub Main;

Var

MB: IMetabase;

Docum: IGxDocument;

PageSet: IGxPageSettings;

Begin

MB:=MetabaseClass.Active;

Docum:=MB.ItemById("Report").Bind As IGxDocument;

PageSet:=Docum.PageSettings(0);

End Sub Main;

After executing the example the PageSet variable contains settings of the object first page with the Report identifier.

See also:

IGxDocument