|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > Selection > AndSelectTreeByUniqueId |
Permits to create a multiple selection in the Tree Page
call DBWShell("AndSelectTreeByUniqueId UniqueID")
UniqueID |
unique id of the document to select together with other ones. |
It must be preceeded by a SelectTreeByUniqueId command, in order to start the selection.
SelectTreeByUniqueId command
SelectByUniqueId command
SelectQueryByUniqueId command
Sub main()
DBWInit(TRUE)
DBWShell("SelectTreeByUniqueId 890")
DBWShell("AndSelectTreeByUniqueId 930")
DBWShell("AndSelectTreeByUniqueId 872")
DBWShell("AndSelectTreeByUniqueId 922")
End Sub