Previous Document Next Document

Object Model Reference : Classes : S : Shape : Properties : Shape.Outline


Shape.Outline

Property Outline As Outline

Description

Member of Shape

The Outline property returns an Outline object that represents the outline properties of a shape.

The Outline property returns a read-only value.

VBA example

The following VBA example applies a 0.1" wide outline to the selected object if it does not already have an outline.

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.