Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 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

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.2.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):

cshtml
<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