LoadModuleOptions
- Aktualisiert2025-07-21
- 1 Minute(n) Lesezeit
LoadModuleOptions
These constants represent the options you can use with the loadOptions parameter of the SequenceFile.LoadModules , Sequence.LoadModules , and Step.LoadModule methods. Use the bitwise-OR operator to specify more than one option.
- LoadModule_DoNotPromptToFindFile –(Value: 0x20) If this option is set and the method cannot find the module file, the method does not launch a file dialog box to find the module file.
- LoadModule_DoNotRunLoadCallbacks –(Value: 0x40) If this option is set and the module is a SequenceCallModule , the method loads the sequence file without running the SequenceFileLoad callback sequence. Only the SequenceCallModule uses this option.
- LoadModule_EvaluateExpressions –(Value: 0x4) Loads modules of Sequence Call steps that specify the module by expression. Pass a sequence context to the method when using this option.
- LoadModule_IgnoreErrors –(Value: 0x1) Ignores errors that occur when loading modules. If this option is not set, each error is reported in a dialog box.
- LoadModule_IgnoreSkippedSteps –(Value: 0x8) Does not load the modules for steps that have a run mode of anything but RunMode_Normal .
- LoadModule_LoadModulesInSubSequences –(Value: 0x2) Loads modules in subsequences when their corresponding Sequence Call step is loaded.
- LoadModule_NoOptions –(Value: 0x0) No options.
- LoadModule_ThrowExceptionOnError –(Value: 0x10) If this option is set and LoadModule_IgnoreErrors is not set, the method throws an exception if an error occurs loading the module.