Struct GroupImage
Definition
- Assembly:
- Tizen.Uix.Sticker.dll
This structure represents an image of sticker group.
C#Copypublic struct GroupImage
Constructors
Declaration
C#Copypublic GroupImage(string groupName, UriType uriType, string uri)
Parameters
| Type | Name | Description |
|---|---|---|
| string | groupName | The group name for setting group image. |
| UriType | uriType | The URI type of the image file. |
| string | uri | The URI of the image file. |
Properties
Declaration
C#Copypublic readonly string GroupName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Declaration
C#Copypublic readonly string Uri { get; }
Property Value
| Type | Description |
|---|---|
| string |
Declaration
C#Copypublic readonly UriType UriType { get; }
Property Value
| Type | Description |
|---|---|
| UriType |
Methods
Declaration
C#Copypublic override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | A object to compare. |
Returns
| Type | Description |
|---|---|
| bool | true if the two group images are equal; otherwise, false. |
Overrides
System.ValueType.Equals(object)
Declaration
C#Copypublic override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int | The hash code for this instance of GroupImage. |
Overrides
System.ValueType.GetHashCode()
Operators
Declaration
C#Copypublic static bool operator ==(GroupImage groupImage1, GroupImage groupImage2)
Parameters
| Type | Name | Description |
|---|---|---|
| GroupImage | groupImage1 | A GroupImage to compare. |
| GroupImage | groupImage2 | A GroupImage to compare. |
Returns
| Type | Description |
|---|---|
| bool | true if the two instances of GroupImage are equal; otherwise false. |
View Source
operator !=(GroupImage, GroupImage)
Compares two instances of GroupImage for inequality.
Declaration
C#Copypublic static bool operator !=(GroupImage groupImage1, GroupImage groupImage2)
Parameters
| Type | Name | Description |
|---|---|---|
| GroupImage | groupImage1 | A GroupImage to compare. |
| GroupImage | groupImage2 | A GroupImage to compare. |
Returns
| Type | Description |
|---|---|
| bool | true if the two instances of GroupImage are not equal; otherwise false. |