Show contents 

Tab > Tab Assembly Interfaces > ITabSheet > ITabSheet.Options

ITabSheet.Options

Syntax

Options: ITabOptions;

Description

The Options property returns the object, containing table parameters.

Example

Sub UserProc;
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 UserProc;

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

See also:

ITabSheet