MPLATFORMLib Namespace > IMConfig Interface : ConfigGetAll Method |
Sub ConfigGetAll( _ ByVal _bAttributesLine As Integer, _ ByRef _pbsAttributesLineOrXML As String _ )
void ConfigGetAll( int _bAttributesLine, out string _pbsAttributesLineOrXML )
procedure ConfigGetAll( _bAttributesLine: Integer; Out _pbsAttributesLineOrXML: String );
void ConfigGetAll( int _bAttributesLine, [PARAMFLAG::Out] BSTR* _pbsAttributesLineOrXML )
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;