AttributesInfoGet Method (IMConfig)
name of attribute
type of attribute information
additional information
Get attribute information (see eMInfoType for details)
Syntax
Sub AttributesInfoGet( _
   ByVal _bsName As String, _
   ByVal _eType As eMInfoType, _
   ByRef _pbsInfo As String _
) 
void AttributesInfoGet( 
   string _bsName,
   eMInfoType _eType,
   out string _pbsInfo
)
procedure AttributesInfoGet( 
    _bsName: String;
    _eType: eMInfoType;
   Out  _pbsInfo: String
); 
void AttributesInfoGet( 
   BSTR* _bsName,
   eMInfoType _eType,
   [PARAMFLAG::Out] BSTR* _pbsInfo
) 

Parameters

_bsName
name of attribute
_eType
type of attribute information
_pbsInfo
additional information
Example
Dim myInfo As String
myAttributes.AttributesInfoGet("pos", eMInfoType.eMIT_Default, myInfo)
string myInfo;
myAttributes.AttributesInfoGet("pos", eMInfoType.eMIT_Default, out myInfo);
var
myInfo: widestring;
begin
m_pAttributes.AttributesInfoGet('pos', eMIT_Default, myInfo);
end;
See Also

Reference

IMConfig Interface
IMConfig Members