With ReaderOpen (MFormats SDK) and FileNameSet (MPlatform) methods, you can specify object properties that are implemented right on initialization.
The basic example is to specify a "loop" property:
myReader.ReaderOpen(pathToFile, "loop=true"); myFile.FileNameSet(pathToFile, "loop=true");
You can specify several properties at once, splitting them with space (' ') symbol:
myReader.ReaderOpen(pathToFile, "loop=true scale_type=crop"); myFile.FileNameSet(pathToFile, "loop=true in=5.0 out=10.0"); // note that in- and out-points are MPlatform-related only
You can specify any of object properties. See more for details about MFReader and about MFile objects.
Though you can specify any properties with the PropsSet method, sometimes it is useful to specify parameters in a single row.