Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets the current set of supported two-dimensional (2-D) manipulations.
Namespace: Microsoft.Maps.MapControl.WPF
Assembly: Microsoft.Maps.MapControl.WPF (in Microsoft.Maps.MapControl.WPF.dll)
Syntax
public Manipulations2D SupportedManipulations { get; set; }
public:
property Manipulations2D SupportedManipulations {
Manipulations2D get();
void set(Manipulations2D value);
}
member SupportedManipulations : Manipulations2D with get, set
Public Property SupportedManipulations As Manipulations2D
Property Value
Type: System.Windows.Input.Manipulations.Manipulations2D
Returns System.Windows.Input.Manipulations.Manipulations2D.
Remarks
The default value is Manipulations2D.All. This value provides all available manipulations. You can turn manipulations on and off with a mask. For example, setting this property to Manipulations2D.Scale|Manipulations2D.Translate turns off rotation because Manipulations2D.Rotation is not included in the mask.
See Also
Map Class
Microsoft.Maps.MapControl.WPF Namespace
Return to top