TreeNode.AOTgetProperties Method

Definition

Overloads

AOTgetProperties()

Returns a string containing the properties of the tree node.

AOTgetProperties(Boolean)
AOTgetProperties(Boolean, Boolean)
AOTgetProperties(Boolean, Boolean, Boolean)

AOTgetProperties()

Returns a string containing the properties of the tree node.

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

Returns

A string containing the properties of the tree node.

Attributes
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute

Remarks

The following example provides a list of temporary tables in Finance and Operations.

{ 
    #aot 
    #properties 
    TreeNode        tn = TreeNode::findNode(#TablesPath); 
    str             tableName; 
    str             temporaryProperty; 
    tn = tn.AOTfirstChild(); 
    while (tn) 
    { 
        tableName = findProperty(tn.AOTgetProperties(), #PropertyName); 
        temporaryProperty = findProperty( 
            tn.AOTgetProperties(), 
            #PropertyTemporary); 
        info (strfmt( 
            'Table %1 has the temporary property specified as %2', 
            tableName, temporaryProperty)); 
        tn = tn.AOTnextSibling(); 
    } 
}

Applies to

AOTgetProperties(Boolean)

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

Parameters

flag1
Boolean

Returns

Attributes
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute

Applies to

AOTgetProperties(Boolean, Boolean)

public:
 virtual System::String ^ AOTgetProperties(bool flag1, bool flag2);
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public virtual string AOTgetProperties (bool flag1, bool flag2);
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
abstract member AOTgetProperties : bool * bool -> string
override this.AOTgetProperties : bool * bool -> string
Public Overridable Function AOTgetProperties (flag1 As Boolean, flag2 As Boolean) As String

Parameters

flag1
Boolean
flag2
Boolean

Returns

Attributes
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute

Applies to

AOTgetProperties(Boolean, Boolean, Boolean)

public:
 virtual System::String ^ AOTgetProperties(bool _includeInvisible, bool _includeReadOnly, bool _includeNonExportable);
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public virtual string AOTgetProperties (bool _includeInvisible, bool _includeReadOnly, bool _includeNonExportable);
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
abstract member AOTgetProperties : bool * bool * bool -> string
override this.AOTgetProperties : bool * bool * bool -> string
Public Overridable Function AOTgetProperties (_includeInvisible As Boolean, _includeReadOnly As Boolean, _includeNonExportable As Boolean) As String

Parameters

_includeInvisible
Boolean
_includeReadOnly
Boolean
_includeNonExportable
Boolean

Returns

Attributes
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute

Applies to