DrawGroup

Syntax

DrawGroup

Remarks

Groups the selected drawing objects so they can be manipulated as a single object.

Example

This example sets the drawing range to the current paragraph and then selects each object whose anchor is in the range. If the number of objects in the range is greater than one, they are grouped together.


DrawSetRange "\Para"
numobjects = DrawCount()
For i = 1 To numobjects
    DrawExtendSelect i
Next i
If numobjects > 1 Then DrawGroup

See Also

DrawDisassemblePicture, DrawExtendSelect, DrawSelect, DrawSetRange, DrawUngroup