TPictureBoxTouchAction Method
This method is run each time a certain touch action occurs.
Namespace: BeeMobile.TransparentControlsAssembly: BeeMobile.TransparentControls.NET48 (in BeeMobile.TransparentControls.NET48.dll) Version: 4.8.8.20
public void TouchAction(
TouchEventType e,
int beginX,
int beginY,
int endX,
int endY
)
Public Sub TouchAction (
e As TouchEventType,
beginX As Integer,
beginY As Integer,
endX As Integer,
endY As Integer
)
- 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.
ITouchable.TouchAction(TouchEventType, Int32, Int32, Int32, Int32)
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.