Skip to main content
All docs
V23.2

ASPxWebDocumentViewer.SettingsSearch Property

Allows you to specify the Web Document Viewer‘s search settings.

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v23.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Reporting

Declaration

public WebDocumentViewerSearchSettings SettingsSearch { get; }

Property Value

Type Description
WebDocumentViewerSearchSettings

An object that specifies the search settings.

Remarks

The SettingsSearch property allows you to hide search actions or disable asynchronous search in the Web Document Viewer.

This property provides access to the following properties:

SearchEnabled
Allows you to hide search actions.
UseAsyncSearch
Specifies whether the Web Document Viewer uses asynchronous search.

The following code snippet shows how to hide search actions in ASP.NET Web Forms applications:

<dx:ASPxWebDocumentViewer ID="ASPxWebDocumentViewer1" runat="server">
    <SettingsSearch SearchEnabled="false" />
</dx:ASPxWebDocumentViewer>
See Also