AttributesStringGet Method (IMConfig)
name of attribute
value of attribute
Gets value of attribute. This method works only with attributes, whose values are strings.
Syntax
Sub AttributesStringGet( _
   ByVal _bsName As String, _
   ByRef _pbsValue As String _
) 
void AttributesStringGet( 
   string _bsName,
   out string _pbsValue
)
procedure AttributesStringGet( 
    _bsName: String;
   Out  _pbsValue: String
); 
void AttributesStringGet( 
   BSTR* _bsName,
   [PARAMFLAG::Out] BSTR* _pbsValue
) 

Parameters

_bsName
name of attribute
_pbsValue
value of attribute
Example
Dim myValue As String
m_pAttributes.AttributesStringGet("spos", myValue)
string myValue;
m_pAttributes.AttributesStringGet("spos", out myValue);
var
myValue: string;
begin
m_pAttributes.AttributesStringGet('pos', myValue);
end;
See Also

Reference

IMConfig Interface
IMConfig Members