Partager via


Style.Type Property (Word)

Returns the style type. Read-only WdStyleType.

Syntax

expression .Type

expression Required. A variable that represents a Style object.

Example

This example displays a message that indicates the style type of the style named "SubTitle" in the active document.

If ActiveDocument.Styles("SubTitle").Type = _ 
 wdStyleTypeParagraph Then 
 MsgBox "Paragraph style" 
ElseIf ActiveDocument.Styles("SubTitle").Type = _ 
 wdStyleTypeCharacter Then 
 MsgBox "Character style" 
End If

See Also

Concepts

Style Object Members

Style Object