Struct GroupImage

Definition

Namespace:
Tizen.Uix.Sticker
Assembly:
Tizen.Uix.Sticker.dll
API Level:
10

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.

API Level: 10

Properties

View Source

GroupName

The name of the group.

Declaration
C#
Copy
public string GroupName { get; }
Property Value
Type Description
String
API Level: 10
View Source

Uri

The URI of the image file.

Declaration
C#
Copy
public string Uri { get; }
Property Value
Type Description
String
API Level: 10
View Source

UriType

The URI type of the image file.

Declaration
C#
Copy
public UriType UriType { get; }
Property Value
Type Description
UriType
API Level: 10

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 to compare.

Returns
Type Description
Boolean

true if the two group images are equal; otherwise, false.

API Level: 10
View Source

GetHashCode()

Gets the hash code for this instance of GroupImage.

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

The hash code for this instance of GroupImage.

API Level: 10

Operators

View Source

Equality(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
Boolean

true if the two instances of GroupImage are equal; otherwise false.

API Level: 10
View Source

Inequality(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
Boolean

true if the two instances of GroupImage are not equal; otherwise false.

API Level: 10

Extension Methods