TextFrame2.HasText property (Excel)

Returns whether the specified text frame has text. Read-only MsoTriState.

Syntax

expression.HasText

expression A variable that represents a TextFrame2 object.

Example

This example formats the text in the text frame if the text frame contains text.

With ActiveSheet.Shapes(1).TextFrame2 
If .HasText Then 
.TextRange2.Font.Name = "Arial" 

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.