ConfigShowProps Method (MWriterClass)
type of the option
type of the properties
handle of the window
Shows properties of the specified type. Reserved for future usage.
Syntax
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
) 

Parameters

_bsType
type of the option
_bsPropsType
type of the properties
_lWndHandle
handle of the window
Example
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;
See Also

Reference

MWriterClass Class
MWriterClass Members