AttributesBoolGet Method (MElementClass)
name of attribute
value of attribute
Gets value of attribute. This method works only with attributes, whose values are boolean.
Syntax
Public Overridable Sub AttributesBoolGet( _
   ByVal _bsName As String, _
   ByRef _pbValue As Integer _
) 
public virtual void AttributesBoolGet( 
   string _bsName,
   out int _pbValue
)
public procedure AttributesBoolGet( 
    _bsName: String;
   Out  _pbValue: Integer
); virtual; 
public: virtual void AttributesBoolGet( 
   BSTR* _bsName,
   [PARAMFLAG::Out] int _pbValue
) 

Parameters

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

Reference

MElementClass Class
MElementClass Members