Struct SelectionHandleImage

Definition

Namespace:
Tizen.NUI.Text
Assembly:
Tizen.NUI.dll

A struct to pass data of SelectionHandleImageLeft, SelectionHandleImageRight, SelectionHandlePressedImageLeft, SelectionHandlePressedImageRight, SelectionHandleMarkerImageLeft and SelectionHandleMarkerImageRight PropertyMap.

C#
Copy
public struct SelectionHandleImage : IEquatable<SelectionHandleImage>
Implements
Remarks

Properties

View Source

LeftImageUrl

The image path to display for the left selection handle.
It means the handle in the bottom-left.
If the handle needs to be displayed in the top-left, this image will be vertically flipped.
If null or empty string, it doesn't change the property.

Declaration
C#
Copy
public string LeftImageUrl { get; set; }
Property Value
Type Description
String
View Source

RightImageUrl

The image path to display for the right selection handle.
It means the handle in the bottom-right.
If the handle needs to be displayed in the top-right, this image will be vertically flipped.
If null or empty string, it doesn't change the property.

Declaration
C#
Copy
public string RightImageUrl { get; set; }
Property Value
Type Description
String

Methods

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
Object obj

The object to compare with the current object.

Returns
Type Description
Boolean

true if equal SelectionHandleImage, else false.

View Source

Equals(SelectionHandleImage)

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

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

The SelectionHandleImage to compare with the current SelectionHandleImage.

Returns
Type Description
Boolean

true if equal SelectionHandleImage, else false.

View Source

GetHashCode()

Gets the hash code of this SelectionHandleImage.

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

The hash code.

Operators

View Source

Equality(SelectionHandleImage, SelectionHandleImage)

The == operator.

Declaration
C#
Copy
public static bool operator ==(SelectionHandleImage lhsSelectionHandleImage, SelectionHandleImage rhsSelectionHandleImage)
Parameters
Type Name Description
SelectionHandleImage lhsSelectionHandleImage

SelectionHandleImage to compare

SelectionHandleImage rhsSelectionHandleImage

SelectionHandleImage to be compared

Returns
Type Description
Boolean

true if SelectionHandleImages are equal

View Source

Inequality(SelectionHandleImage, SelectionHandleImage)

The != operator.

Declaration
C#
Copy
public static bool operator !=(SelectionHandleImage lhsSelectionHandleImage, SelectionHandleImage rhsSelectionHandleImage)
Parameters
Type Name Description
SelectionHandleImage lhsSelectionHandleImage

SelectionHandleImage to compare

SelectionHandleImage rhsSelectionHandleImage

SelectionHandleImage to be compared

Returns
Type Description
Boolean

true if SelectionHandleImages are not equal

Implements

IEquatable<>

Extension Methods