Previous Document Next Document

Object Model Reference : Classes : O : Outline : Properties : Outline.Type


Outline.Type

Property Type As cdrOutlineType

Description

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.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.