SelectObjects

Sets the current selection. object can be a single COM object or an array of COM objects.

Syntax

object_SelectObjects(selObject As Variant)

The SelectObjects method syntax has the following parts:

Part Description
object An expression evaluating to an object of type PropList.
selObject Variant - a single object or an array of objects.

Example

' Select a single object to the property list
plist.SelectObjects Text1
 
'Select multiple objects (property list would
'aggregate common properties).
plist.SelectObjects Array(Text1, Text2, Text3)