ScrollViewer.IsZoomInertiaEnabled Propiedad

Definición

Obtiene o establece un valor que indica si las acciones de zoom deben incluir inercia en su comportamiento y valor.

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

void IsZoomInertiaEnabled(bool value);
public bool IsZoomInertiaEnabled { get; set; }
var boolean = scrollViewer.isZoomInertiaEnabled;
scrollViewer.isZoomInertiaEnabled = boolean;
Public Property IsZoomInertiaEnabled As Boolean
<ScrollViewer IsZoomInertiaEnabled="bool" />
-or-
<object ScrollViewer.IsZoomInertiaEnabled="bool"/>

Valor de propiedad

Boolean

bool

true si las acciones de zoom deben incluir inercia en su comportamiento y valor; de lo contrario, false.

Comentarios

Para el uso de XAML, IsZoomInertiaEnabled puede ser un atributo en un elemento ScrollViewer explícito o un uso de propiedad adjunta ScrollViewer.IsZoomInertiaEnabled en un elemento secundario de un control que admite scrollview implícitamente en su plantilla.

Se aplica a

Consulte también