Previous Document Next Document

Object Model Reference : Classes : T : Text : Properties : Text.Story


Text.Story

Property Story As TextRange

Description

Member of Text

The Story property returns all text from all text frames.

The Story property returns a read-only value.

VBA example

The following VBA example creates artistic text and displays all of the text.

Sub Test()
 Dim d As Document
 Dim s As Shape
 Dim t As Text
 Set d = CreateDocument
 Set s = d.ActiveLayer.CreateArtisticText(3, 3, "This is a test.")
 Set t = s.Text
 MsgBox "The entire text is:" & vbCr & t.Story
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.