|
6282 | 6282 | Specifies the class or object from which the new class or object is created. |
6283 | 6283 | </param> |
6284 | 6284 | <param name="cModule"> |
6285 | | - Specifies a .vcx file or X# program (.prg, .fxp, .mpr, .app, .exe, and so on) containing the class or object specified with cClassName. |
6286 | | - The default is a .vcx file. If you specify a program file, you must include an extension. |
6287 | | - <note name="Note"> |
6288 | | - A class library can have an alias. To specify a class or object from a class library with an alias, |
6289 | | - include the class library alias followed by a period and the object name.<br/> |
6290 | | - When possible, specify the compiled program name (.fxp) when a class is stored in a program file (.prg). |
6291 | | - This ensures that the class is loaded from the proper class definition file. |
6292 | | - </note> |
6293 | | - If cModule is omitted, or is the empty string or the null value, X# searches for the class or object in the following order: |
6294 | | - <list type="bullet"> |
6295 | | - <item>X# base classes.</item> |
6296 | | - <item>Classes in the current program.</item> |
6297 | | - <item>Class libraries opened with Set CLASSLIB.</item> |
6298 | | - <item>Classes in procedure files opened with Set PROCEDURE.</item> |
6299 | | - <item>Classes in the X# program execution chain.</item> |
6300 | | - <item>The OLE registry if Set OLEOBJECT is ON.</item> |
6301 | | - </list> |
| 6285 | + This parameter is not used in X#. It is included for compatibility with Visual FoxPro. |
6302 | 6286 | </param> |
6303 | 6287 | <param name="cInApplication"> |
6304 | | - Specifies the X# application (.exe or .app) containing the .vcx file you specify with cModule. |
6305 | | - You must include an extension for the application. CInApplication is ignored if cModule is omitted, |
6306 | | - or if cInApplication is the empty string or the null value.<br/> |
6307 | | - If you want to use the cInApplication parameter, you must specify the name of .vcx file for cModule. |
6308 | | - You cannot pass the name of a .prg file or compiled program (.fxp). |
6309 | | - </param> |
6310 | | - <param name="0"> |
6311 | | - Specifies that the class or object is instantiated without executing any of the event or method code in the class or object. |
6312 | | - This feature is not supported in runtime applications.<br/> |
6313 | | - All child classes or objects of the parent class are also instantiated. The event or method code in the child class or object isn't executed.<br/> |
6314 | | - This option is provides the ability to view the structure of a class or object (with the AMembers( ) Function, |
6315 | | - for example) without opening the class or object in the Class or Form Designer.<br/> |
6316 | | - Note that code in the class or object should never be executed - code execution is not supported and can make X# unstable. |
6317 | | - You should never explicitly call an event or method, or set properties. Setting properties can call Access and Assign methods. |
| 6288 | + This parameter is not used in X#. It is included for compatibility with Visual FoxPro. |
6318 | 6289 | </param> |
6319 | 6290 | <param name="eParameter1"> |
6320 | 6291 | Specifies optional parameters that are passed to the Init event procedure for the class or object. |
|
0 commit comments