Share via


SysCompareContextProvider.showTreePane Method [AX 2012]

Determines whether the tree pane is shown in the comparison window.

Syntax

public boolean showTreePane()

Run On

Called

Return Value

Type: boolean
A boolean value that determines whether or not to display the tree pane.

Remarks

It can be useful to have a visual tree when doing a comparison of structures.

For the tree to be populated, the getEnumerator method must return a SysComparableEnumerator of its children.

Examples

From Tutorial_CompareContextProvider.showTreePane method

public boolean showTreePane()  
{  
    //No tree in this tutorial.  
    return false;  
}  

See Also

SysCompareContextProvider Interface

SysComparable.getEnumerator Method

SysComparableEnumerator Interface

Tutorial_CompareContextProvider.showTreePane Method