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