ConfigSet Method (MWriterClass)
type of the option
value of the option
attributes of the option
Sets the option of the specified type and gets its attributes for setting the properties of this option.
Syntax
Public Overridable Sub ConfigSet( _
   ByVal _bsType As String, _
   ByVal _bsName As String, _
   ByRef _ppConfigProps As IMAttributes _
) 
public virtual void ConfigSet( 
   string _bsType,
   string _bsName,
   out IMAttributes _ppConfigProps
)
public procedure ConfigSet( 
    _bsType: String;
    _bsName: String;
   Out  _ppConfigProps: IMAttributes
); virtual; 
public: virtual void ConfigSet( 
   BSTR* _bsType,
   BSTR* _bsName,
   [PARAMFLAG::Out] IMAttributes* _ppConfigProps
) 

Parameters

_bsType
type of the option
_bsName
value of the option
_ppConfigProps
attributes of the option
Example
Dim myAttributes As IMAttributes
myWriter.ConfigSet("format", "vob", myAttributes)
IMAttributes myAttributes;
myWriter.ConfigSet("format", "vob", out myAttributes);
var
myWriter: MWriter;
myConfig: IMConfig;
myOption: string;
begin
myWriter:= CreateComObject(CLASS_MWriter) as MWriter;
myConfig:=myWriter as IMConfig;
myConfig.ConfigSet('format', 'avi', myAttributes);
end;
See Also

Reference

MWriterClass Class
MWriterClass Members