Class StickerData

    Definition

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

    The StickerData provides the methods to get/set the sticker data.

    public class StickerData : IDisposable
    Inheritance
    object
    StickerData

    Constructors

    View Source

    StickerData()

    The public constructor.

    Declaration
    public StickerData()

    Properties

    View Source

    AppId

    Gets the name of the sticker provider application from sticker data.

    Declaration
    public string AppId { get; }
    Property Value
    Type Description
    string
    View Source

    Description

    Gets/Sets the description of the sticker data.

    Declaration
    public string Description { get; set; }
    Property Value
    Type Description
    string
    View Source

    DisplayType

    Gets/Sets the display type of the sticker data.

    Declaration
    public DisplayType DisplayType { get; set; }
    Property Value
    Type Description
    DisplayType
    View Source

    GroupName

    Gets/Sets the group name of the sticker data.

    Declaration
    public string GroupName { get; set; }
    Property Value
    Type Description
    string
    View Source

    LastUpdated

    Gets the last update date from sticker data.

    Declaration
    public DateTime LastUpdated { get; }
    Property Value
    Type Description
    DateTime
    View Source

    Thumbnail

    Gets/Sets the thumbnail local path of the sticker data.

    Declaration
    public string Thumbnail { get; set; }
    Property Value
    Type Description
    string
    View Source

    Uri

    Gets the URI from sticker data.

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

    UriType

    Gets the URI type from sticker data.

    Declaration
    public UriType UriType { get; }
    Property Value
    Type Description
    UriType

    Methods

    View Source

    AddKeyword(string)

    Adds a keyword of the sticker to the list.

    Declaration
    public void AddKeyword(string keyword)
    Parameters
    Type Name Description
    string keyword

    The keyword to be saved.

    View Source

    Dispose()

    Release any unmanaged resources used by this object.

    Declaration
    public void Dispose()
    View Source

    Dispose(bool)

    Release any unmanaged resources used by this object.

    Declaration
    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.

    View Source

    ~StickerData()

    The destructor of the StickerData class.

    Declaration
    protected ~StickerData()
    View Source

    GetAllKeywords()

    Retrieves all keywords of the sticker data.

    Declaration
    public IEnumerable<string> GetAllKeywords()
    Returns
    Type Description
    IEnumerable<><string>
    View Source

    RemoveKeyword(string)

    Removes a keyword of the sticker from the list.

    Declaration
    public void RemoveKeyword(string keyword)
    Parameters
    Type Name Description
    string keyword

    The keyword to be removed.

    View Source

    SetUri(UriType, string)

    Sets the URI of the sticker data.

    Declaration
    public void SetUri(UriType uriType, string uri)
    Parameters
    Type Name Description
    UriType 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.

    Extension Methods

    EXamlExtensions.LoadFromEXamlByRelativePath<T>(T, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, Type)
    Extensions.LoadFromXamlFile<TXaml>(TXaml, string)
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX