Previous Document Next Document
Text.BeginEdit

Sub BeginEdit()

Member of Text

The BeginEdit method sets the state for editing text.

The following code example creates paragraph text and places the text in the editing mode:

Sub Test() 
 Dim d As Document 
 Dim s As Shape 
 Dim t As Text 
 Set d = CreateDocument 
 Set s = d.ActiveLayer.CreateParagraphText(3, 3, 7, 7, "This is a 
test.") 
 Set t = s.Text 
 t.BeginEdit 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.