Class AvatarInfo
Definition
- Assembly:
- Tizen.NUI.AIAvatar.dll
The AvatarInfo class describes the properties of an Avatar object. It includes information such as the name of the avatar, its thumbnail image, and associated resources. This class helps users manage and organize their Avatar assets more effectively.
public class AvatarInfo
- Inheritance
-
objectAvatarInfo
Constructors
View SourceAvatarInfo(string, string, AvatarInfoOption)
Initializes a new instance of the AvatarInfo class with the specified file path, name, and option. If no option is provided, the default is AvatarInfoOption.Thumbnail.
Declaration
public AvatarInfo(string name, string path, AvatarInfoOption info = default)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name of the Avatar. |
| string | path | The full path to the Avatar file. |
| AvatarInfoOption | info | The option specifying what type of information should be loaded from the file (thumbnail or resource). |
Properties
View SourceName
The Name property gets the name of the Avatar. This value is read-only and cannot be modified directly.
Declaration
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
ThumbnailPath
The ThumbnailPath property gets the path to the thumbnail image representing the Avatar. This value is read-only and cannot be modified directly.
Declaration
public string ThumbnailPath { get; }
Property Value
| Type | Description |
|---|---|
| string |