Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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();
}