Previous Document Next Document

Object Model Reference : Classes : E : EffectTextOnPath : Properties : EffectTextOnPath.Quadrant


EffectTextOnPath.Quadrant

Property Quadrant As cdrFittedQuadrant

Description

Member of EffectTextOnPath

The Quadrant property returns or specifies the placement of text on a closed curve.

This property returns cdrFittedQuadrant.

 
See also the EffectTextOnPath.Placement property.
VBA example

The following VBA example places the text on the right side of a circle.

Sub Test()
 Dim sText As Shape, sPath As Shape
 Set sText = ActiveLayer.CreateArtisticText(0, 0, "Some Text")
 Set sPath = ActiveLayer.CreateEllipse2(4.25, 5.5, 2)
 sText.Text.FitToPath sPath
 sText.Effects(1).TextOnPath.Quadrant = cdrRightQuadrant
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.