MapControl.PedestrianFeaturesVisible Property

Definition

Gets or sets a value that indicates whether pedestrian features such as public stairs are displayed on the map.

public:
 property bool PedestrianFeaturesVisible { bool get(); void set(bool value); };
bool PedestrianFeaturesVisible();

void PedestrianFeaturesVisible(bool value);
public bool PedestrianFeaturesVisible { get; set; }
var boolean = mapControl.pedestrianFeaturesVisible;
mapControl.pedestrianFeaturesVisible = boolean;
Public Property PedestrianFeaturesVisible As Boolean
<!-- xmlns:Maps="using:Windows.UI.Xaml.Controls.Maps" -->

<Maps:MapControl PedestrianFeaturesVisible="pedestrianFeaturesVisible"/>
- or -
<Maps:MapControl>
    <Maps:MapControl.PedestrianFeaturesVisible>pedestrianFeaturesVisible</Maps:MapControl.PedestrianFeaturesVisible>
</Maps:MapControl>

Property Value

Boolean

bool

true if pedestrian features such as public stairs are displayed on the map; otherwise, false.

Applies to

See also