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#Copypublic struct SelectionHandleImage : IEquatable<SelectionHandleImage>
- Implements
-
IEquatable<SelectionHandleImage>
Remarks
The SelectionHandleImage struct is used as an argument to SetSelectionHandleImage, GetSelectionHandleImage methods, SetSelectionHandlePressedImage, GetSelectionHandlePressedImage, SetSelectionHandleMarkerImage and GetSelectionHandleMarkerImage.
See SetSelectionHandleImage(SelectionHandleImage), GetSelectionHandleImage(), SetSelectionHandlePressedImage(SelectionHandleImage), GetSelectionHandlePressedImage(), SetSelectionHandleMarkerImage(SelectionHandleImage), GetSelectionHandleMarkerImage(),
SetSelectionHandleImage(SelectionHandleImage), GetSelectionHandleImage(), SetSelectionHandlePressedImage(SelectionHandleImage), GetSelectionHandlePressedImage(), SetSelectionHandleMarkerImage(SelectionHandleImage) and GetSelectionHandleMarkerImage().
Properties
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#Copypublic string LeftImageUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
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#Copypublic string RightImageUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
Methods
Declaration
C#Copypublic 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. |
Equals(SelectionHandleImage)
Determines whether the specified object is equal to the current object.
Declaration
C#Copypublic 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. |
Declaration
C#Copypublic override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | The hash code. |
Operators
Declaration
C#Copypublic 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 |
Declaration
C#Copypublic 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 |