Properties:
Methods:
The GestureList class represents a list of Gesture objects.
Get a GestureList object from a Frame object.
Public Functions
- Since
- 1.0
PropertyGestureList Append(GestureList other)Appends the members of the specified GestureList to this GestureList.
- Since
- 1.0
- Parameters
- other -
A GestureList object containing Gesture objects to append to the end of this GestureList.
GestureList()Constructs an empty gesture list.
- Since
- 1.0
int Count
The length of this list.
if (frame.Gestures ().Count > 0) { //Process gestures... }
- Return
- The number of gestures in this list.
- Since
- 1.0
bool IsEmpty
Reports whether the list is empty.
if (!frame.Gestures ().IsEmpty) { //Handle this frame's gesture objects }
- Return
- True, if the list has no members.
- Since
- 1.0