TextRange2.Font property (Office)
Returns a Font object that represents character formatting for the TextRange2 object. Read-only.
Syntax
expression.Font
expression An expression that returns a TextRange2 object.
Return value
Font
Example
This example sets the formatting for the text in shape one on slide one in the active PowerPoint presentation.
With ActivePresentation.Slides(1).Shapes(1)
With .TextFrame.TextRange2.Font
.Size = 48
.Name = "Palatino"
.Bold = True
.Color.RGB = RGB(255, 127, 255)
End With
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.