Struct GroupImage
Definition
- Assembly:
- Tizen.Uix.Sticker.dll
This structure represents an image of sticker group.
public struct GroupImage
Constructors
View SourceGroupImage(string, UriType, string)
The public constructor.
Declaration
public 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
View SourceGroupName
The name of the group.
Declaration
public readonly string GroupName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Uri
The URI of the image file.
Declaration
public readonly string Uri { get; }
Property Value
| Type | Description |
|---|---|
| string |
UriType
The URI type of the image file.
Declaration
public readonly UriType UriType { get; }
Property Value
| Type | Description |
|---|---|
| UriType |
Methods
View SourceEquals(object)
Compares an object to an instance of GroupImage for equality.
Declaration
public 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
GetHashCode()
Gets the hash code for this instance of GroupImage.
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int | The hash code for this instance of GroupImage. |
Overrides
Operators
View Sourceoperator ==(GroupImage, GroupImage)
Compares two instances of GroupImage for equality.
Declaration
public 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. |
operator !=(GroupImage, GroupImage)
Compares two instances of GroupImage for inequality.
Declaration
public 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. |