Struct GestureInfoType

Definition

Namespace:
Tizen.NUI.BaseComponents
Assembly:
Tizen.NUI.dll

Gesture information type containing all values needed to AccessibilityDoGestureSignal.

C#
Copy
public struct GestureInfoType : IEquatable<GestureInfoType>
Implements
IEquatable<GestureInfoType>

Properties

View Source

EndPositionX

The X position where the gesture ends.

Declaration
C#
Copy
public int EndPositionX { get; set; }
Property Value
Type Description
Int32
View Source

EndPositionY

The Y position where the gesture ends.

Declaration
C#
Copy
public int EndPositionY { get; set; }
Property Value
Type Description
Int32
View Source

EventTime

The time when event occured.

Declaration
C#
Copy
public uint EventTime { get; set; }
Property Value
Type Description
UInt32
View Source

StartPositionX

The X position where the gesture begins.

Declaration
C#
Copy
public int StartPositionX { get; set; }
Property Value
Type Description
Int32
View Source

StartPositionY

The Y position where the gesture begins.

Declaration
C#
Copy
public int StartPositionY { get; set; }
Property Value
Type Description
Int32
View Source

State

The enumerated state of gesture.

Declaration
C#
Copy
public AccessibilityGestureState State { get; set; }
Property Value
Type Description
AccessibilityGestureState
View Source

Type

Accessibility enumerated gesture type.

Declaration
C#
Copy
public AccessibilityGesture Type { get; set; }
Property Value
Type Description
AccessibilityGesture

Methods

View Source

Equals(GestureInfoType)

Determines whether the specified object is equal to the current object.

Declaration
C#
Copy
public bool Equals(GestureInfoType other)
Parameters
Type Name Description
GestureInfoType other

The GestureInfoType to compare with the current GestureInfoType

Returns
Type Description
Boolean

True if equal GestureInfoType, otherwise false

View Source

Equals(Object)

Determines whether the specified object is equal to the current object.

Declaration
C#
Copy
public override bool Equals(Object obj)
Parameters
Type Name Description
Tizen.System.Object obj

The object to compare with the current object

Returns
Type Description
Boolean

True if the specified object is equal to the current object, otherwise false

View Source

GetHashCode()

Gets the hash code of this baseHandle.

Declaration
C#
Copy
public override int GetHashCode()
Returns
Type Description
Int32

The Hash Code

Operators

View Source

Equality(GestureInfoType, GestureInfoType)

The == operator.

Declaration
C#
Copy
public static bool operator ==(GestureInfoType arg1, GestureInfoType arg2)
Parameters
Type Name Description
GestureInfoType arg1

The first value

GestureInfoType arg2

The second value

Returns
Type Description
Boolean

True if GestureInfoTypes are equal

View Source

Inequality(GestureInfoType, GestureInfoType)

The != operator.

Declaration
C#
Copy
public static bool operator !=(GestureInfoType arg1, GestureInfoType arg2)
Parameters
Type Name Description
GestureInfoType arg1

The first value

GestureInfoType arg2

The second value

Returns
Type Description
Boolean

True if GestureInfoTypes are not equal

Implements

IEquatable<>

Extension Methods