Window.OnManipulationBoundaryFeedback Method (System.Windows)

Switch View :
ScriptFree
.NET Framework Class Library
Window.OnManipulationBoundaryFeedback Method

Called when the ManipulationBoundaryFeedback event occurs.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
Syntax

Visual Basic
Protected Overrides Sub OnManipulationBoundaryFeedback ( _
	e As ManipulationBoundaryFeedbackEventArgs _
)
C#
protected override void OnManipulationBoundaryFeedback(
	ManipulationBoundaryFeedbackEventArgs e
)
Visual C++
protected:
virtual void OnManipulationBoundaryFeedback(
	ManipulationBoundaryFeedbackEventArgs^ e
) override
F#
abstract OnManipulationBoundaryFeedback : 
        e:ManipulationBoundaryFeedbackEventArgs -> unit 
override OnManipulationBoundaryFeedback : 
        e:ManipulationBoundaryFeedbackEventArgs -> unit 

Parameters

e
Type: System.Windows.Input.ManipulationBoundaryFeedbackEventArgs
The data for the event.
Remarks

This implementation does not change the handled state (the Handled property) of the ManipulationBoundaryFeedback event data.

Notes to Inheritors

If you override OnManipulationBoundaryFeedback, always call the base implementation in your OnManipulationBoundaryFeedback implementation. Failure to call the base implementation prevents base classes from handling the event, which might change the run-time behavior of the final class. You can call the base implementation either before or after your special handling, depending on your requirements.

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