Partager via


TextEffectFormat.NormalizedHeight Property (PowerPoint)

Determines whether the characters (both uppercase and lowercase) in the specified WordArt are the same height. Read/write.

Syntax

expression .NormalizedHeight

expression A variable that represents a TextEffectFormat object.

Return Value

MsoTriState

Remarks

The value of the NormalizedHeight property can be one of these MsoTriState constants.

Constant

Description

msoFalse

All characters (both uppercase and lowercase) in the specified WordArt are not the same height.

msoTrue

All characters (both uppercase and lowercase) in the specified WordArt are the same height.

Example

This example adds WordArt that contains the text "Test Effect" to myDocument and gives the new WordArt the name "texteff1." The code then makes all characters in the shape named "texteff1" the same height.

Set myDocument = ActivePresentation.Slides(1)

myDocument.Shapes.AddTextEffect(PresetTextEffect:=msoTextEffect1, _

    Text:="Test Effect", FontName:="Courier New", _

    FontSize:=44, FontBold:=True, _

    FontItalic:=False, Left:=10, Top:=10)_

    .Name = "texteff1"

myDocument.Shapes("texteff1").TextEffect.NormalizedHeight = msoTrue

See Also

Concepts

TextEffectFormat Object Members

TextEffectFormat Object