Gets whether this Element supports horizontal 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 'OnMousePanHorizontal' method
will be called during the capture. Derived elements that want to support
panning should override OnMousePanHorizontal, and perform scrolling operations
from within that method
Syntax
| Visual Basic (Declaration) | |
|---|
Protected Overridable ReadOnly Property SupportsHorizontalMousePanning As Boolean |
| C# | |
|---|
protected virtual bool SupportsHorizontalMousePanning {get;} |
See Also