MapSearchPanelOptions.Visible Property
Gets or sets whether the search panel is visible.
Namespace: DevExpress.XtraMap
Assembly: DevExpress.XtraMap.v24.1.dll
NuGet Package: DevExpress.Win.Map
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true | true to show the search panel; otherwise, false. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to Visible |
---|---|
MapControl |
|
Example
The following example configures the search panel options such as width, prompt message, and so on:
using DevExpress.XtraMap;
private void OnFormLoad(object sender, EventArgs e) {
// Enable search:
InformationLayer infoLayer = new InformationLayer();
mapControl1.Layers.Add(infoLayer);
BingSearchDataProvider searchProvider = new BingSearchDataProvider();
infoLayer.DataProvider = searchProvider;
searchProvider.BingKey = bingKey;
// Specify search panel options:
mapControl1.SearchPanelOptions.Visible = true;
mapControl1.SearchPanelOptions.ShowNullValuePrompt = true;
mapControl1.SearchPanelOptions.NullValuePrompt = "Type a location to search...";
mapControl1.SearchPanelOptions.MaxVisibleItemCount = 3;
mapControl1.SearchPanelOptions.Width = 200;
}
See Also