MPLATFORMLib Namespace > MWriterClass Class : ConfigShowProps Method |
Public Overridable Sub ConfigShowProps( _ ByVal _bsType As String, _ ByVal _bsPropsType As String, _ ByVal _lWndHandle As Long _ )
public virtual void ConfigShowProps( string _bsType, string _bsPropsType, long _lWndHandle )
public procedure ConfigShowProps( _bsType: String; _bsPropsType: String; _lWndHandle: Int64 ); virtual;
public: virtual void ConfigShowProps( BSTR* _bsType, BSTR* _bsPropsType, long _lWndHandle )
myWriter.ConfigShowProps("format", "", 0)
myWriter.ConfigShowProps("format", "", 0);
var myWriter: MWriter; myConfig: IMConfig; myOption: string; begin myWriter:= CreateComObject(CLASS_MWriter) as MWriter; myConfig:=myWriter as IMConfig; myConfig.ConfigShowProps('format', '', 0); end;