AndSelectByUniqueId

<< Click to Display Table of Contents >>

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

AndSelectByUniqueId

Description

Permits to create a multiple selection in the Documents Page

Syntax

call DBWShell("AndSelectByUniqueId UniqueID")

Parameters

UniqueID

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

Remarks

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

See also

SelectByUniqueId command
 
SelectTreeByUniqueId command
SelectQueryByUniqueId command

Example

Sub main()

 DBWInit(TRUE)
 DBWShell("SelectByUniqueId 890")
 DBWShell("AndSelectByUniqueId 930")
 DBWShell("AndSelectByUniqueId 872")
 DBWShell("AndSelectByUniqueId 922")
End Sub