ConfigTypesGetCount Method (MWriterClass)
number of types
Gets the count of option types.
Syntax
Public Overridable Sub ConfigTypesGetCount( _
   ByRef _pnCount As Integer _
) 
public virtual void ConfigTypesGetCount( 
   out int _pnCount
)
public procedure ConfigTypesGetCount( 
   Out  _pnCount: Integer
); virtual; 
public: virtual 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

MWriterClass Class
MWriterClass Members