.NET Framework Class Library
UserProcessDocument Delegate
|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > .NET API > MwPDMApi Namespace > .NET Framework Class Library |
Delegate for the callback method invoked during traverse for each tree element
Namespace: MwPDMApi
Assembly: MwPDMApi (in MwPDMApi.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Visual Basic |
|---|
Public Delegate Function UserProcessDocument ( _ appl As Application, _ |
C# |
|---|
public delegate bool UserProcessDocument( Application appl, |
Visual C++ |
|---|
public delegate bool UserProcessDocument( Application^ appl, |
JavaScript |
|---|
function(appl, docUid, parentUid, nesting); |
Parameters
appl
Type: MwPDMApi.Application
The application object
docUid
Type: System.Int32
Unique id of the current tree node
parentUid
Type: System.Int32
Parent unique id of the current tree node
nesting
Type: System.Int32
Nesting level
Return Value
The return value is used to continue/stop the tree traversing
See Also