Interface ITouchScreen
Represents a touch screen device
Assembly: Meadow.Contracts.dll
View Source
Declaration
public interface ITouchScreen
Properties
IsTouched
Returns <b>true</b> if the touchscreen is currently being touched, otherwise <b>false</b>
View Source
Declaration
bool IsTouched { get; }
Rotation
Gets the current rotation of the touchscreen
View Source
Declaration
RotationType Rotation { get; }
Events
TouchDown
Event raised when the touchscreen is pressed
View Source
Declaration
event TouchEventHandler TouchDown
Event Type
Meadow.Hardware.TouchEventHandler
TouchUp
Event raised when the touchscreen is released
View Source
Declaration
event TouchEventHandler TouchUp
Event Type
Meadow.Hardware.TouchEventHandler
TouchClick
Event raised when a cycle of press and release has occurred
View Source
Declaration
event TouchEventHandler TouchClick
Event Type
Meadow.Hardware.TouchEventHandler
TouchMoved
Event raised when a cycle of press and release has occurred
View Source
Declaration
event TouchEventHandler TouchMoved