Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    DevExpress.Reporting.Designer.Settings Module

    Contains functions and properties used to specify the Report Designer settings.

    #Interfaces

    Name Description
    IPropertyGridSettings An object that contains properties to customize the Properties Panel.

    #Variables

    Name Description
    PropertyGrid Allows you to customize the Properties Panel in the Report Designer.

    #Functions

    Name Description
    AIServicesEnabled Enables AI-powered AI-powered functionality in the Web Report Designer.
    ContextMenusEnabled Enables report-specific context menus.
    DimensionNotationsEnabled Enables exact element size (dimension notations) on the reporting surface during resize operations. The notations are based on a specified report unit (inches, millimeters, or pixels).
    SmartTagsEnabled Enables smart tags.

    #Remarks

    Use settings from this class on the BeforeRender event:

    cshtml
    <script>
        function onBeforeRender(s, e) {
            DevExpress.Reporting.Designer.Settings.ContextMenusEnabled(false);
        }
    </script>
    
    @{
        var designerRender = Html.DevExpress().ReportDesigner("reportDesigner")
            .Height("100%")
            .ClientSideEvents(configure => configure.BeforeRender("onBeforeRender"))
            .Bind(Model);
        @designerRender.RenderHtml()
    }