AttributesIntGet Method (IMAttributes)
name of attribute
value of attribute
Gets value of attribute. This method works only with attributes, whose values are integer.
Syntax
Sub AttributesIntGet( _
   ByVal _bsName As String, _
   ByRef _pnValue As Integer _
) 
void AttributesIntGet( 
   string _bsName,
   out int _pnValue
)
procedure AttributesIntGet( 
    _bsName: String;
   Out  _pnValue: Integer
); 
void AttributesIntGet( 
   BSTR* _bsName,
   [PARAMFLAG::Out] int _pnValue
) 

Parameters

_bsName
name of attribute
_pnValue
value of attribute
Example
Dim myValue As Integer
m_pAttributes.AttributesIntGet("show", myValue)
int myValue;
m_pAttributes.AttributesIntGet("show", out myValue);
var
myValue: integer;
begin
m_pAttributes.AttributesIntGet(how', myValue);
end;
See Also

Reference

IMAttributes Interface
IMAttributes Members