Object Model Reference : Classes : O : Outline : Properties : Outline.Type |
Property Type As cdrOutlineType
Member of Outline
The Type property lets you remove an outline or check whether an outline is available for a shape.
The Type property returns a value of cdrOutlineType.
The following VBA example removes the outline from the selected shape.
Sub Test() |
ActiveShape.Outline.Type = cdrNoOutline |
End Sub |
Sub Test() |
If ActiveShape.Outline.Type = cdrNoOutline Then |
ActiveShape.Outline.Width = 0.1 |
End If |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.