AndSelectTreeByUniqueId

<< Click to Display Table of Contents >>

Navigation:  Programming Mechworks PDM > DBWCommandShell > Commands Reference > Selection >

AndSelectTreeByUniqueId

Description

Permits to create a multiple selection in the Tree Page

Syntax

call DBWShell("AndSelectTreeByUniqueId UniqueID")

Parameters

UniqueID

unique id of the document to select together with other ones.

Remarks

It must be preceeded by a SelectTreeByUniqueId command, in order to start the selection.

See also

SelectTreeByUniqueId command
 
SelectByUniqueId command
SelectQueryByUniqueId command

Example

Sub main()

 DBWInit(TRUE)
 DBWShell("SelectTreeByUniqueId 890")
 DBWShell("AndSelectTreeByUniqueId 930")
 DBWShell("AndSelectTreeByUniqueId 872")
 DBWShell("AndSelectTreeByUniqueId 922")
End Sub