aspnet-devexpress-dot-web-dot-aspxcardview-eedf357b.md
Provides access to the search panel‘s settings.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public ASPxCardViewSearchPanelSettings SettingsSearchPanel { get; }
Public ReadOnly Property SettingsSearchPanel As ASPxCardViewSearchPanelSettings
| Type | Description |
|---|---|
| ASPxCardViewSearchPanelSettings |
An ASPxCardViewSearchPanelSettings object that containing the search panel settings.
|
<dx:ASPxCardView ID="CardView" runat="server" DataSourceID="CustomersDataSource" ClientInstanceName="card" Width="100%" AutoGenerateColumns="False">
<Columns>
<dx:CardViewColumn FieldName="ContactName" />
<dx:CardViewColumn FieldName="CompanyName" />
<dx:CardViewColumn FieldName="Address" />
<dx:CardViewColumn FieldName="City" />
<dx:CardViewColumn FieldName="PostalCode" />
<dx:CardViewColumn FieldName="Country" />
<dx:CardViewColumn FieldName="Phone" />
</Columns>
<SettingsSearchPanel Visible="true" ColumnNames="ContactName; City"/>
</dx:ASPxCardView>
See Also