Share via


TextRange.ChangeCase Method

PowerPoint Developer Reference

Changes the case of the specified text.

Syntax

expression.ChangeCase(Type)

expression   A variable that represents a TextRange object.

Parameters

Name Required/Optional Data Type Description
Type Required PpChangeCase Specifies the way the case will be changed.

Example

This example sets title case capitalization for the title on slide one in the the active presentation.

Visual Basic for Applications
  Application.ActivePresentation.Slides(1).Shapes.Title.TextFrame _
    .TextRange.ChangeCase ppCaseTitle

See Also