Struct GroupImage

Definition

Namespace:
Tizen.Uix.Sticker
Assembly:
Tizen.Uix.Sticker.dll

This structure represents an image of sticker group.

C#
Copy
public struct GroupImage

Constructors

View Source

GroupImage(string, UriType, string)

The public constructor.

Declaration
C#
Copy
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 Source

GroupName

The name of the group.

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

Uri

The URI of the image file.

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

UriType

The URI type of the image file.

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

Methods

View Source

Equals(object)

Compares an object to an instance of GroupImage for equality.

Declaration
C#
Copy
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
System.ValueType.Equals(object)
View Source

GetHashCode()

Gets the hash code for this instance of GroupImage.

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

The hash code for this instance of GroupImage.

Overrides
System.ValueType.GetHashCode()

Operators

View Source

operator ==(GroupImage, GroupImage)

Compares two instances of GroupImage for equality.

Declaration
C#
Copy
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.

View Source

operator !=(GroupImage, GroupImage)

Compares two instances of GroupImage for inequality.

Declaration
C#
Copy
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.