ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / Designer Class / ReportTabsPanelVisible Property
Example

In This Topic
    ReportTabsPanelVisible Property
    In This Topic
    Gets or sets a value indicating whether the panel containing the tabs for switching between Design, Script, and Preview modes is visible.
    Syntax
    'Declaration
     
    Public Property ReportTabsPanelVisible As Boolean
    public bool ReportTabsPanelVisible {get; set;}

    Property Value

    true if the panel with the tabs is visible; otherwise, false. The default is true.
    Remarks
    This property allows for the customization of the report designer's interface by controlling the visibility of the panel that contains the Design, Script, and Preview tabs. It can be used to streamline the interface in scenarios where switching between these modes is not necessary.
    Example
    // You can hide the whole report tabs/tool pane.
    designer.ReportTabxPanelVisible = false;
    See Also