Previous Document Next Document

Object Model Reference : Classes : S : StructAlignProperties : Properties : StructAlignProperties.MaxWordSpacing


StructAlignProperties.MaxWordSpacing

Property MaxWordSpacing As Single

Description

Member of StructAlignProperties

The MaxWordSpacing property returns or specifies the maximum amount of space that can exist between words. This value represents a percentage of the Space character (that is, the character inserted when you press the Spacebar). The maximum value is 2000; the minimum value is 0.

VBA example

The following VBA example specifies the adjustment range for character and word spacing in the selected text object.

Sub Test()
 With ActiveShape.Text.AlignProperties
  .MaxCharacterSpacing = 200
  .MinWordSpacing = 50
  .MaxWordSpacing = 150
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.