TreeNode.AOTdelete Method

Deletes the tree node in the development layer that you are currently working in.

Syntax

public void AOTdelete()

Run On

Called

Examples

The following example deletes the Address form.

#AOT 
static void myJobAOTdelete(Args _args) 
{ 
    treeNode treeNode; 
 
    treeNode = TreeNode::findNode(#FormsPath + '\\' + formStr(Address)); 
    treeNode.AOTdelete(); 
}

See Also

TreeNode Class

TreeNode.AOTadd Method