Skip to main content
All docs
V24.1

DxReportDesignerParameterEditingSettings Class

Contains settings that configure user interface elements related to the editing of parameters, parameter groups, and parameter separators in the Web Report Designer.

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v24.1.JSBasedControls.Common.dll

NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common

Declaration

public class DxReportDesignerParameterEditingSettings :
    SettingsComponent<ReportDesignerParameterEditingSettingsModel>

Remarks

Use the following properties:

AllowEditParameterCollection
Hides the UI elements that allow users to add and delete parameters.
AllowEditParameterGroups
Hides the UI elements that allow users to add and delete parameter groups.
AllowEditParameterSeparators
Hides the UI elements that allow users to add and delete parameter separators.
AllowEditProperties
Allows you to disable all property editors for parameters and parameter groups.
AllowReorderParameters
Hides UI elements that allow users to reorder parameters, parameter groups, and parameter separators.

The following code snippet makes parameters, parameter groups, and separators read-only for users (users cannot add or delete parameters/groups/separators, edit their properties, and reorder them):

<DxReportDesigner ReportName="TestReport" Height="calc(100vh - 130px)" Width="100%" AllowMDI="true" DataSources="DataSources">
    <DxReportDesignerParameterEditingSettings 
        AllowEditParameterCollection="false"
        AllowEditParameterGroups="false"
        AllowEditParameterSeparators="false"
        AllowEditProperties="false"
        AllowReorderParameters="false">
    </DxReportDesignerParameterEditingSettings>
</DxReportDesigner>

Inheritance

Object
ComponentBase
DevExpress.Blazor.Reporting.Base.SettingsComponent<DevExpress.Blazor.Reporting.ReportDesignerParameterEditingSettingsModel>
DxReportDesignerParameterEditingSettings
See Also