The default value for the MPL option. (Variant Property - Read Only)
The maximum value of the MPL option. (Variant Property - Read Only)
The minimum value of the MPL option. (Variant Property - Read Only)
The name of the MPL option. (String Property - Read Only)
The current value of the MPL option. (Variant Property - Read/Write)
Specifies if the option has been changed. (Boolean Property - Read Only)
The type of the option. (Enumerated Property - Read Only). Possible values are:
CSharp Example:
OptiMax MPL; MPL = new OptiMax(); MPL.ReadProjectFile("c:\\mplwin4\\mplwin.mpj"); MPL.Options["MaxVarLen"].Value = 15; foreach (MplOption mplOpt in MPL.Options) Console.WriteLine("MPLOPT: " + mplOpt.Name + ": val=" + mplOpt.Value);