Share via


ScrollViewer.IsScrollInertiaEnabled Propiedad

Definición

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

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

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

Valor de propiedad

Boolean

bool

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

Comentarios

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

Se aplica a

Consulte también