Infragistics(R) NetAdvantage(R) Windows Forms
SupportsVerticalMousePanning Property
See Also  E-mail your feedback on this topic.
Infragistics.Win Namespace > UIElement Class : SupportsVerticalMousePanning Property

Gets whether this Element supports vertical mouse panning Default implementation returns false; derived elements that want to support panning must override this property implementation and return true If a derived element returns true, the mouse is captured when the middle button is pressed. The virtual 'OnMousePanVertical' method will be called during the capture. Derived elements that want to support panning should override OnMousePanVertical, and perform scrolling operations from within that method

Syntax

Visual Basic (Declaration) 
Protected ReadOnly Property SupportsVerticalMousePanning As Boolean
C# 
protected bool SupportsVerticalMousePanning {get;}

See Also