ScrollViewerViewChangingEventArgs
ScrollViewerViewChangingEventArgs
ScrollViewerViewChangingEventArgs
ScrollViewerViewChangingEventArgs
Class
Definition
Provides event data for the ViewChanging event and similar control-specific events.
public : sealed class ScrollViewerViewChangingEventArgs : IScrollViewerViewChangingEventArgspublic sealed class ScrollViewerViewChangingEventArgs : IScrollViewerViewChangingEventArgsPublic NotInheritable Class ScrollViewerViewChangingEventArgs Implements IScrollViewerViewChangingEventArgs// This API is not available in Javascript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
FinalView FinalView FinalView FinalView
Gets the view that the ScrollViewer will show when the view comes to rest after a pan/zoom manipulation.
public : ScrollViewerView FinalView { get; }public ScrollViewerView FinalView { get; }Public ReadOnly Property FinalView As ScrollViewerView// This API is not available in Javascript.
The view that the ScrollViewer will show when the view comes to rest after a pan/zoom manipulation.
IsInertial IsInertial IsInertial IsInertial
Gets a value that indicates whether the pan/zoom manipulation has an inertial component.
public : PlatForm::Boolean IsInertial { get; }public bool IsInertial { get; }Public ReadOnly Property IsInertial As bool// This API is not available in Javascript.
- Value
- PlatForm::Boolean bool bool bool
true if the pan/zoom manipulation has an inertial component; otherwise, false.
Remarks
IsInertial is true for manipulations that occur:
- using a mouse wheel.
- using key strokes on ScrollViewer and other controls that support direct manipulation.
- by calling ChangeView with animation enabled.
IsInertial is false for manipulations that occur:
- by dragging the Thumb on a scrollbar.
- using key strokes on controls that don't support direct manipulation.
- by calling ChangeView with animation disabled.
NextView NextView NextView NextView
Gets the view that the ScrollViewer will show next.
public : ScrollViewerView NextView { get; }public ScrollViewerView NextView { get; }Public ReadOnly Property NextView As ScrollViewerView// This API is not available in Javascript.
The view that the ScrollViewer will show next.