ConfigTypesGetCount Method (IMConfig)
number of types
Gets the count of option types.
Syntax
Sub ConfigTypesGetCount( _
   ByRef _pnCount As Integer _
) 
void ConfigTypesGetCount( 
   out int _pnCount
)
procedure ConfigTypesGetCount( 
   Out  _pnCount: Integer
); 
void ConfigTypesGetCount( 
   [PARAMFLAG::Out] int _pnCount
) 

Parameters

_pnCount
number of types
Example
Dim myCount As Integer
myWriter.ConfigTypesGetCount(myCount)
int myCount;
myWriter.ConfigTypesGetCount(out myCount);
var
myWriter: MWriter;
myConfig: IMConfig;
myCount: integer;
begin
myWriter:= CreateComObject(CLASS_MWriter) as MWriter;
myConfig:=m_objWriter as IMConfig;
myConfig.ConfigTypesGetCount(myCount);
end;
See Also

Reference

IMConfig Interface
IMConfig Members