ClassNode.AOTedit Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AOTedit() |
Opens the class so that it can be modified in the editor. |
AOTedit(Int32) | |
AOTedit(Int32, Int32) |
AOTedit()
Opens the class so that it can be modified in the editor.
public:
override void AOTedit();
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override void AOTedit ();
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.AOTedit : unit -> unit
Public Overrides Sub AOTedit ()
- Attributes
-
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute
Remarks
All methods are loaded into the editor. The arguments are included in the signature for backward compatibility only; they are ignored.
static void example()
{
ClassNode classNode;
classNode = infolog.findNode('\Classes\SysClassWizard');
classNode.AOTedit();
}
Applies to
AOTedit(Int32)
public:
override void AOTedit(int num1);
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override void AOTedit (int num1);
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.AOTedit : int -> unit
Public Overrides Sub AOTedit (num1 As Integer)
Parameters
- num1
- Int32
- Attributes
-
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute
Applies to
AOTedit(Int32, Int32)
public:
override void AOTedit(int _Line, int _Column);
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override void AOTedit (int _Line, int _Column);
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.AOTedit : int * int -> unit
Public Overrides Sub AOTedit (_Line As Integer, _Column As Integer)
Parameters
- _Line
- Int32
A value that is ignored; optional.
- _Column
- Int32
A value that is ignored; optional.
- Attributes
-
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute