ConfigGetAll Method (IMConfig)
"0" is to return properties as XML, "1" is to return properties as simple string
properties of configuration
Gets all properties of configuration.
Syntax
Sub ConfigGetAll( _
   ByVal _bAttributesLine As Integer, _
   ByRef _pbsAttributesLineOrXML As String _
) 
procedure ConfigGetAll( 
    _bAttributesLine: Integer;
   Out  _pbsAttributesLineOrXML: String
); 
void ConfigGetAll( 
   int _bAttributesLine,
   [PARAMFLAG::Out] BSTR* _pbsAttributesLineOrXML
) 

Parameters

_bAttributesLine
"0" is to return properties as XML, "1" is to return properties as simple string
_pbsAttributesLineOrXML
properties of configuration
Example
Dim myConfigProps As String
myWriter.ConfigGetAll(0, myConfigProps)
string myConfigProps;
myWriter.ConfigGetAll(0, out myConfigProps);
var
myWriter: MWriter;
myConfig: IMConfig;
myConfigProps: string;
begin
myWriter:= CreateComObject(CLASS_MWriter) as MWriter;
myConfig:=myWriter as IMConfig;
myConfig.ConfigGetAll(0, myConfigProps);
end;
See Also

Reference

IMConfig Interface
IMConfig Members