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 Overridable ReadOnly Property SupportsVerticalMousePanning As Boolean |
| C# | |
|---|
protected virtual bool SupportsVerticalMousePanning {get;} |
See Also