Share via


ClassNode.AOTedit Method

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

Syntax

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.

Remarks

All methods are loaded into the editor. The arguments are included in the signature for backward compatibility only; they are ignored.

Examples

static void example() 
{ 
    ClassNode classNode; 
 
    classNode = infolog.findNode('\\Classes\\SysClassWizard'); 
    classNode.AOTedit(); 
}

See Also

Reference

ClassNode Class