AttributesGetCount Method (IMElement)
number of attributes
Gets count of attributes.
Syntax
Sub AttributesGetCount( _
   ByRef _pnCount As Integer _
) 
void AttributesGetCount( 
   out int _pnCount
)
procedure AttributesGetCount( 
   Out  _pnCount: Integer
); 
void AttributesGetCount( 
   [PARAMFLAG::Out] int _pnCount
) 

Parameters

_pnCount
number of attributes
Example
Dim myCount As Integer
myAttributes.AttributesGetCount(myCount)
int myCount;
myAttributes.AttributesGetCount(out myCount);
var
myCount: integer;
begin
m_pAttributes.AttributesGetCount(myCount);
end;
See Also

Reference

IMElement Interface
IMElement Members