Previous Document Next Document
Text.Overflow

Property Overflow As Boolean

Member of Text

The Overflow property returns True if the amount of text exceeds the space available in a chain of linked paragraph-text frames.

The Overflow property returns a read-only value.

The following code example adjusts the height of a frame to accommodate any overflowing text:

Sub Test() 
 Dim s As Shape 
 ActiveDocument.ReferencePoint = cdrTopLeft 
 For Each s In ActiveDocument.ActivePage.Shapes 
  If s.Type = cdrTextShape Then 
   If s.Text.Type = cdrParagraphText Then 
    If s.Text.Overflow Then AdjustFrame s 
   End If 
  End If 
 Next s 
End Sub 
Private Sub AdjustFrame(s As Shape) 
 Dim h As Double 
 h = s.SizeHeight / 10 
 While s.Text.Overflow 
  s.SizeHeight = s.SizeHeight + h 
 Wend 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.