Express > Express Assembly Interfaces > IEaxObject > IEaxObject.Visible
Visible: Boolean;
The Visible property determines whether the object is displayed in express report window and printed.
Sub UserProc;
Var
MB: IMetabase;
MObj: IMetabaseObject;
Expr: IEaxAnalyzer;
Object: IEaxObject;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("EXPRESS_REPORT").Edit;
Expr := MObj As IEaxAnalyzer;
Object := Expr.ViewOrder(0);
Object.Visible := False;
MObj.Save;
End Sub UserProc;
After executing the example the object having the index 0 is not shown in the express report window and is not printed. Express report identifier - EXPRESS_REPORT.
See also: