ITabSheet.Options

Syntax

Options: ITabOptions;

Description

The Options property returns the object, containing table parameters.

Example

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

Rep: IPrxReport;

Tab: ITabSheet;

Opt: ITabOptions;

Begin

MB:=MetabaseClass.Active;

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

Rep:=MObj As IPrxReport;

Tab:=Rep.ActiveSheet.Table;

Opt:=Tab.Options;

Opt.AutoPercentEntry:=True;

MObj.Save;

End Sub Main;

After executing the example the Automatically Input Percents checkbox is selected for the active sheet of the regular report.

See also:

ITabSheet