TreeNode.AOTname Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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;
}