This topic has not yet been rated - Rate this topic

TextFrame2 Object

Office 2007
Represents the text frame in a Shape, ShapeRange, or ChartFormat object.

Version Information
 Version Added:  Excel 2007

Remarks

This object contains the text in the text frame as well as the properties and methods that control the alignment and anchoring of the text frame. Use the TextFrame2 property to return a TextFrame2 object.

Example

The following example adds a rectangle to myDocument, adds text to the rectangle, and then sets the margins for the text frame.

Visual Basic for Applications
Set myDocument = Worksheets(1)
With myDocument.Shapes.AddShape(msoShapeRectangle, _
        0, 0, 250, 140).TextFrame2
    .TextRange.Text = "Here is some test text"
    .MarginBottom = 10
    .MarginLeft = 10
    .MarginRight = 10
    .MarginTop = 10
End With



Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ