ShapeRange.Select Method

Publisher Developer Reference

Selects the specified object.

Syntax

expression.Select(Replace)

expression   A variable that represents a ShapeRange object.

Parameters

Name Required/Optional Data Type Description
Replace Optional Variant Specifies whether the selection replaces any previous selection. True to replace the previous selection with the new selection; False to add the new selection to the previous selection. Default is True.

Example

This example selects shapes one and three on page one in the active publication.

Visual Basic for Applications
  ActiveDocument.Pages(1).Shapes.Range(Array(1, 3)).Select

This example adds shapes two and four on page one in the active publication to the previous selection.

Visual Basic for Applications
  ActiveDocument.Pages(1).Shapes.Range(Array(2, 4)) _
    .Select Replace:=False

See Also