.NET Framework Class Library
UserProcessDocument Delegate

<< Click to Display Table of Contents >>

Navigation:  MwPDMApi Namespace >

.NET Framework Class Library
UserProcessDocument Delegate

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, _
 docUid As Integer, _
 parentUid As Integer, _
 nesting As Integer _
As Boolean

C#

public delegate bool UserProcessDocument(

 Application appl,
 int docUid,
 int parentUid,
 int nesting
)

Visual C++

public delegate bool UserProcessDocument(

 Applicationappl,
 int docUid,
 int parentUid,
 int nesting
)

JavaScript

function(appldocUidparentUidnesting);

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

MwPDMApi Namespace