Table of Contents

Interface IHasInteractiveHandles

Namespace
ScottPlot
Assembly
ScottPlot.dll
public interface IHasInteractiveHandles
Extension Methods

Methods

GetHandle(CoordinateRect)

Return the interactive handle inside the rectangle

InteractiveHandle? GetHandle(CoordinateRect rect)

Parameters

rect CoordinateRect

Returns

InteractiveHandle

MoveHandle(InteractiveHandle, Coordinates)

Called when the given handle has been moved (typically the result of a click-drag)

void MoveHandle(InteractiveHandle handle, Coordinates point)

Parameters

handle InteractiveHandle
point Coordinates

PressHandle(InteractiveHandle)

Called when the given handle has been pressed (typically the start of a drag)

void PressHandle(InteractiveHandle handle)

Parameters

handle InteractiveHandle

ReleaseHandle(InteractiveHandle)

Called when the given handle has been released (typically the end of a drag)

void ReleaseHandle(InteractiveHandle handle)

Parameters

handle InteractiveHandle