IEaxAnalyzer.MaximizeWindows

Syntax

MaximizeWindows: Boolean;

Description

The MaximizeWindows property determines whether windows of express report objects fit the whole screen on opening.

NOTE. The property is outdated, use the WindowsPosition property instead.

Example

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

Expr: IEaxAnalyzer;

Begin

MB:=MetabaseClass.Active;

MObj:=MB.ItemById("EXPRESS_REPORT").Edit;

Expr:=MObj As IEaxAnalyzer;

Expr.MaximizeWindows:=False;

MObj.Save;

End Sub Main;

After executing the example, express report objects do not open as full size screen windows when the express report is opened. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzer