ITabView.Protection

Syntax

Protection: ITabProtection;

Description

The Protection property returns the object which contains the table protection.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Rep: IPrxReport;
    Tab: ITabSheet;
    View: ITabView;
    Prot: ITabProtection;
Begin
    MB:=MetabaseClass.Active;
    Rep:=MB.ItemById("Reg_rep").Bind As IPrxReport;
    Tab:=Rep.ActiveSheet.Table;
    View:=Tab.View;
    Prot:=View.Protection;
End Sub UserProc;

After executing the example the Prot variable will contain the regular report active sheet protection.

See also:

ITabView