Skip to main content
All docs
V25.2
  • DxViewer.EditingFieldsHighlighted Property

    Specifies whether the editable fields are highlighted in the document.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.2.Viewer.dll

    NuGet Package: DevExpress.Blazor.Viewer

    Declaration

    public bool EditingFieldsHighlighted { get; set; }

    Property Value

    Type Description
    Boolean

    True to highlight the editable fields; otherwise, false.

    Remarks

    Enable this property to highlight all editable fields available in the document.

    The screenshot below shows a highlighted edit field and a toolbar button that can be used to enable this property from the UI.

    Report Viewer for Blazor -- Highlight Editing Fields

    The following code snippet highlights all editable fields in the document:

    <DxViewer @ref="reportViewer"></DxReportViewer>
    
    @code {
        DxReportViewer reportViewer;
    
        protected override void OnAfterRender(bool firstRender)
        {
            base.OnAfterRender(firstRender);
            reportViewer.EditingFieldsHighlighted = true;
        }
    }
    
    See Also