TPictureBoxTouchAction Method

This method is run each time a certain touch action occurs.

Definition

Namespace: BeeMobile.TransparentControls
Assembly: BeeMobile.TransparentControls.NET48 (in BeeMobile.TransparentControls.NET48.dll) Version: 4.8.8.20
C#
public void TouchAction(
	TouchEventType e,
	int beginX,
	int beginY,
	int endX,
	int endY
)

Parameters

e  TouchEventType
Defines what kind of touch action has ocurred.
beginX  Int32
The X coordinate of the begining of touch action.
beginY  Int32
The Y coordinate of the begining of touch action.
endX  Int32
The X coordinate of the end of touch action.
endY  Int32
The Y coordinate of the end of touch action.

Implements

ITouchable.TouchAction(TouchEventType, Int32, Int32, Int32, Int32)

Remarks

The touch action is an event which occurs if the user touches the screen. Depending on how the user touches the screen, this can be e.g., Tap, TouchDown, TouchUp, Drag, etc. TouchEventType for more information.

See Also