TreeNode.AOTname Method

Definition

Returns the value of the name property of the node.

public:
 virtual System::String ^ AOTname();
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public virtual string AOTname ();
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
abstract member AOTname : unit -> string
override this.AOTname : unit -> string
Public Overridable Function AOTname () As String

Returns

The string that contains the value of the name property

Attributes
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute

Remarks

In most cases, this yields the same result as the method TreeNodeName.

The following example prints out the name of the first child of the tree node.

static void Job(Args _args) 
{ 
    treeNode t = infolog.findNode('\\Reports\\AssetAcquisition\\Designs\\ReportDesign1\\AutoDesignSpecs'); 
    t = t.AOTfirstChild(); 
    print "treeNodeName: " + t.treeNodeName(); 
    print "AOTName:" + t.AOTName(); 
    pause; 
}

Applies to