Object Model Reference : Classes : U : URL : Properties : URL.Region |
Property Region As cdrURLRegion
Member of URL
The Region property returns or specifies the region for a URL.
The following VBA example sets the region for the URL to the bounding box of each shape on the page.
Sub Test() |
Dim sh As Shape |
For Each sh In ActivePage.Shapes |
sh.URL.Region = cdrURLRegionRectangle |
Next sh |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.