CorelDRAW Community
Site
Search
User
Site
Search
User
Forums
More
CorelDRAW Graphics Suite X6
Corel PHOTO-PAINT X6
how to find a particular size shapes in a document and make their outline none?
Forums
Tags
More
Cancel
New
Threads in this forum
By title
By date
By reply count
By view count
By most asked
By votes
By quality
Descending
Ascending
All recent questions and discussions
Unread questions and discussions
Questions and discussions you've participated in
Questions and discussions you've started
Unanswered questions and discussions
Answered questions and discussions
Questions with suggested answers
Issues with Mouse in Corel PhotoPaint X6 (Windows 8.1)
Suggested Answer
over 5 years ago
Menue bar
Not Answered
4 months ago
Undo shortcut Ctrl+Z not working
Not Answered
6 months ago
how to find a particular size shapes in a document and make their outline none?
Not Answered
over 3 years ago
Default unit settings for new .CPT files
over 1 year ago
sorry i can not reply to posts
Not Answered
over 8 years ago
Class not Registered
Not Answered
over 1 year ago
X6 PhotoPaint crash
over 2 years ago
Cutout Lab
Not Answered
over 2 years ago
Clone and brush tools no longer working
Not Answered
over 7 years ago
Recording and making a script for editing photos.
over 2 years ago
Unsharp Mask settings - are they actually settable?
Not Answered
over 2 years ago
default and custom gridline settings
Not Answered
over 2 years ago
Removing a black background using channel splitting
over 2 years ago
Can one separate the drop shadow from an object in PP?
over 2 years ago
Transparency / Mask / Photo Paint
Not Answered
over 2 years ago
Crazy, Squirrely Mouse-wheel Zoom
over 8 years ago
Does anyone know of a green screen (chroma key) plug for photo-paint?
Not Answered
over 2 years ago
Cannot ungroup objects - ungroup option greyed out
Answered
over 7 years ago
"Blend if" function...
over 3 years ago
Related
how to find a particular size shapes in a document and make their outline none?
paraggoyal
over 3 years ago
for example i need to find all 11X8.5 inch boxes in a document and make their outline none?
0
Myron
over 3 years ago
Sub FindShapes()
Dim S As Shape, sr As ShapeRange, p As Page
For Each p In ActiveDocument.Pages
p.Activate
Set sr = ActivePage.Shapes.FindShapes
For Each S In sr
If S.SizeHeight = 11 Then
S.outline.SetNoOutline
End If
Next S
Next p
End Sub
Cancel
Up
0
Down
Reply
Verify Answer
Cancel
0
paraggoyal
over 3 years ago
in reply to
Myron
am sorry but its corel draw not corel photo paint. by mistake i post in corel photo paint.
and if possible then i need exact height and width to find the shapes
Cancel
Up
0
Down
Reply
Verify Answer
Cancel
0
Myron
over 3 years ago
in reply to
paraggoyal
take the code above and build on it to suit your needs
Cancel
Up
0
Down
Reply
Verify Answer
Cancel
0
paraggoyal
over 3 years ago
in reply to
Myron
dont know much about proper arguments in corel draw its giving me error 13
this was also not working in corel draw x6.
Cancel
Up
0
Down
Reply
Verify Answer
Cancel
0
Myron
over 3 years ago
in reply to
paraggoyal
Yes, made for X7 or above. Wasn't sure if would work in X6.
Cancel
Up
0
Down
Reply
Verify Answer
Cancel
>