Class StickerData
Definition
- Assembly:
- Tizen.Uix.Sticker.dll
The StickerData provides the methods to get/set the sticker data.
C#
Copy
public class StickerData : IDisposable
- Inheritance
-
objectSticker
Data
- Implements
-
System.
IDisposable
Constructors
Declaration
C#
Copy
public StickerData()
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This can occur due to the following reasons:
|
Properties
Declaration
C#
Copy
public string AppId { get; }
Property Value
Type | Description |
---|---|
string |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to no data available. |
Declaration
C#
Copy
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
Declaration
C#
Copy
public DisplayType DisplayType { get; set; }
Property Value
Type | Description |
---|---|
Display |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to an invalid parameter. |
Declaration
C#
Copy
public string GroupName { get; set; }
Property Value
Type | Description |
---|---|
string |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to no data available. |
Declaration
C#
Copy
public DateTime LastUpdated { get; }
Property Value
Type | Description |
---|---|
System. |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to no data available. |
Declaration
C#
Copy
public string Thumbnail { get; set; }
Property Value
Type | Description |
---|---|
string |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to an invalid parameter. |
Declaration
C#
Copy
public string Uri { get; }
Property Value
Type | Description |
---|---|
string |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to no data available. |
Declaration
C#
Copy
public UriType UriType { get; }
Property Value
Type | Description |
---|---|
Uri |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to no data available. |
Methods
Declaration
C#
Copy
public void AddKeyword(string keyword)
Parameters
Type | Name | Description |
---|---|---|
string | keyword | The keyword to be saved. |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to an invalid parameter. |
Declaration
C#
Copy
public void Dispose()
Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
Declaration
C#
Copy
protected ~StickerData()
Declaration
C#
Copy
public IEnumerable<string> GetAllKeywords()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><string> |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to no data available. |
Declaration
C#
Copy
public void RemoveKeyword(string keyword)
Parameters
Type | Name | Description |
---|---|---|
string | keyword | The keyword to be removed. |
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to an invalid parameter. |
Declaration
C#
Copy
public void SetUri(UriType uriType, string uri)
Parameters
Type | Name | Description |
---|---|---|
Uri |
uriType | The URI type to be saved. |
string | uri | The URI to be saved. |
Remarks
uri
must be a path inside the app package directory like 'res/smile.png' when the type of URI is local path.
Exceptions
Type | Condition |
---|---|
System. |
The required feature is not supported. |
System. |
This exception can be due to an invalid parameter. |