ConfigSetAll Method (IMConfig)
properties of configuration as XML or simple string
Sets all properties of configuration.
Syntax
Sub ConfigSetAll( _
   ByVal _bsAttributesLineOrXML As String _
) 
void ConfigSetAll( 
   string _bsAttributesLineOrXML
)
procedure ConfigSetAll( 
    _bsAttributesLineOrXML: String
); 
void ConfigSetAll( 
   BSTR* _bsAttributesLineOrXML
) 

Parameters

_bsAttributesLineOrXML
properties of configuration as XML or simple string
Example
myWriter.ConfigSetAll("format='vob' video::codec='mpeg2video' video::b='20M' video::g='1' video::me_method='full' video::qmin='1' video::qmax='1' audio::codec='mp2' audio::maxrate='256000' audio::b='200K'")
myWriter.ConfigSetAll("format='vob' video::codec='mpeg2video' video::b='20M' video::g='1' video::me_method='full' video::qmin='1' video::qmax='1' audio::codec='mp2' audio::maxrate='256000' audio::b='200K'");
var
myWriter: MWriter;
myConfig: IMConfig;
myOption: string;
begin
myWriter:= CreateComObject(CLASS_MWriter) as MWriter;
myConfig:=myWriter as IMConfig;
myConfig.ConfigSetAll('format=vob' video::codec=mpeg2video video::b=20M video::g=1 video::me_method=full video::qmin=1 video::qmax=1 audio::codec=mp2 audio::maxrate=256000 audio::b=200K');
end;
See Also

Reference

IMConfig Interface
IMConfig Members