ScrollViewer.PanningRatio Property (System.Windows.Controls)

Switch View :
ScriptFree
.NET Framework Class Library
ScrollViewer.PanningRatio Property

Gets or sets the ratio of scrolling offset to translate manipulation offset.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Syntax

Visual Basic
Public Property PanningRatio As Double
	Get
	Set
C#
public double PanningRatio { get; set; }
Visual C++
public:
property double PanningRatio {
	double get ();
	void set (double value);
}
F#
member PanningRatio : float with get, set

XAML Attribute Usage
<object PanningRatio="double" .../>

Property Value

Type: System.Double
The ratio of scrolling offset to translate manipulation offset. The default is 1.
Remarks

When a user drags a finger across an object, it is considered a translate manipulation. The ScrollViewer uses that manipulation to scroll. The PanningRatio property specifies how much the ScrollViewer scrolls for each unit of translation. For example, if PanningRatio is 2, the ScrollViewer will scroll 2 device-independent units (1/96th inch per unit) for every device-independent unit (1/96th inch) of the translate manipulation.

Version Information

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference