ClassNode.AOTedit Method [AX 2012]

Opens the class so that it can be modified in the editor.

public void AOTedit([int Line, int Column])

Run On

Called

Parameters

Line
Type: int
A value that is ignored; optional.
Column
Type: int
A value that is ignored; optional.

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(); 
}

Community Additions

ADD
Show: