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

ASPxWebDocumentViewer.SettingsSearch Property

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

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v24.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:

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