.NET Framework Class Library
Tree.WalkTreeBottomTop Method
|
<< Click to Display Table of Contents >> Navigation: MwPDMApi Namespace > Tree Class > Tree Methods > .NET Framework Class Library |
Traverse a document tree, in a bottom-to-top order.
Namespace: MwPDMApi
Assembly: MwPDMApi (in MwPDMApi.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Visual Basic |
|---|
Public Sub WalkTreeBottomTop ( _ docUid As String, _ |
C# |
|---|
public void WalkTreeBottomTop( string docUid, |
Visual C++ |
|---|
public: void WalkTreeBottomTop( |
JavaScript |
|---|
function walkTreeBottomTop(docUid, traverseParent, clientHook, queryFilter); |
Parameters
docUid
Type: System.String
unique id of the root document
traverseParent
Type: System.Boolean
TRUE traverse document parent tree, FALSE traverse document child tree
clientHook (Optional)
Type: System.Object
object providing the UserProcessDocument user-defined method:
Function UserProcessDocument(ByVal appl As Object, ByVal docUid As String, ByVal wtParentUid As String, ByVal wtNesting as Integer) As Boolean
appl: Application object
docUid: unique id of the current tree node
wtParentUid, wtNesting: traversing data (parent unique id and nesting level)
queryFilter (Optional)
Type: System.String
Optional. Further specification for the tree walking (like "AND _condition_")
Remarks
UserProcessDocument is invoked during traverse: return value is used to continue/stop the tree traversing
See Also