Class StagingAreaInputItem
- Namespace
- nanoFramework.UI.Input
- Assembly
- nanoFramework.Graphics.dll
This class encapsulates an input event while it is being processed by the input manager.
public class StagingAreaInputItem
- Inheritance
-
StagingAreaInputItem
- Inherited Members
- Extension Methods
Remarks
This class just provides the dictionary-based storage for all of the listeners of the various input manager events.
Fields
Input
Returns the input event.
public readonly InputEventArgs Input
Field Value
Methods
GetData(object)
Provides storage for arbitrary data needed during the processing of this input event.
public object GetData(object key)
Parameters
key
objectAn arbitrary key for the data. This cannot be null.
Returns
- object
The data previously set for this key, or null.
SetData(object, object)
Provides storage for arbitrary data needed during the processing of this input event.
public void SetData(object key, object value)