MPLATFORMLib Namespace > IMConfig Interface : ConfigGet Method |
Sub ConfigGet( _ ByVal _bsType As String, _ ByRef _pbsName As String, _ ByRef _ppConfigProps As IMAttributes _ )
void ConfigGet( string _bsType, out string _pbsName, out IMAttributes _ppConfigProps )
procedure ConfigGet( _bsType: String; Out _pbsName: String; Out _ppConfigProps: IMAttributes );
void ConfigGet( BSTR* _bsType, [PARAMFLAG::Out] BSTR* _pbsName, [PARAMFLAG::Out] IMAttributes* _ppConfigProps )
Dim myAttributes As IMAttributes Dim myOption As String myWriter.ConfigGet("format", myOption, myAttributes)
IMAttributes myAttributes; string myOption; myWriter.ConfigGet("format", out myOption, out myAttributes);
var myWriter: MWriter; myConfig: IMConfig; myAttributes: IMAttributes; myOption: string; begin myWriter:= CreateComObject(CLASS_MWriter) as MWriter; myConfig:=myWriter as IMConfig; myConfig.ConfigGet('format', myOption, myAttributes); end;