Previous Document Next Document
TextRange.Style

Property Style As cdrFontStyle

Member of TextRange

The Style property returns of sets the font style of the range.

The following code example applies bold formatting to the paragraph:

Sub Test() 
 Dim d As Document 
 Dim s As Shape 
 Dim t As Text 
 Set d = CreateDocument 
 Set s = d.ActiveLayer.CreateParagraphText(2, 2, 4, 4, "This is an 
example.") 
 Set t = s.Text 
 t.Story.Style = cdrBoldFontStyle 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.