Meeting SDK for Windows API Reference
Loading...
Searching...
No Matches
I3DAvatarImageInfo Class Referenceabstract

3D avatar image information interface. More...

#include <setting_service_interface.h>

Public Member Functions

virtual bool IsSelected ()=0
 Determine if the current image is being used.
 
virtual bool IsLastUsed ()=0
 Determine if the current item is most recently used.
 
virtual const zchar_tGetImageFilePath ()=0
 Get the file path of the current image.
 
virtual const zchar_tGetImageName ()=0
 Get the name of the current image.
 
virtual int GetIndex ()=0
 Get the index of the current image.
 
virtual ~I3DAvatarImageInfo ()
 

Detailed Description

3D avatar image information interface.

Definition at line 829 of file setting_service_interface.h.

Constructor & Destructor Documentation

◆ ~I3DAvatarImageInfo()

virtual I3DAvatarImageInfo::~I3DAvatarImageInfo ( )
inlinevirtual

Definition at line 863 of file setting_service_interface.h.

863{};

Member Function Documentation

◆ GetImageFilePath()

virtual const zchar_t * I3DAvatarImageInfo::GetImageFilePath ( )
pure virtual

Get the file path of the current image.

Returns
If the function succeeds, the return value is the file path of current image. Otherwise returns nullptr.

◆ GetImageName()

virtual const zchar_t * I3DAvatarImageInfo::GetImageName ( )
pure virtual

Get the name of the current image.

Returns
If the function succeeds, the return value is the name of the current image. Otherwise returns nullptr.

◆ GetIndex()

virtual int I3DAvatarImageInfo::GetIndex ( )
pure virtual

Get the index of the current image.

Returns
If the function succeeds, the return value is the index of current image.
Note
If no image is selected, the index value will be -1.

◆ IsLastUsed()

virtual bool I3DAvatarImageInfo::IsLastUsed ( )
pure virtual

Determine if the current item is most recently used.

Returns
true means that the current image is the most recently used as the 3D avatar image.

◆ IsSelected()

virtual bool I3DAvatarImageInfo::IsSelected ( )
pure virtual

Determine if the current image is being used.

Returns
true means that the current image is used as the 3D avatar image.