ConfigSet Method (IMConfig)
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
Sub ConfigSet( _
   ByVal _bsType As String, _
   ByVal _bsName As String, _
   ByRef _ppConfigProps As IMAttributes _
) 
procedure ConfigSet( 
    _bsType: String;
    _bsName: String;
   Out  _ppConfigProps: IMAttributes
); 
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

IMConfig Interface
IMConfig Members