共用方式為


Style.NameLocal Property

Word Developer Reference

Returns the name of a built-in style in the language of the user. Read/write String.

Syntax

expression.NameLocal

expression   Required. A variable that represents a Style object.

Remarks

Setting this property renames a user-defined style or adds an alias to a built-in style.

Example

This example displays the style name (in the language of the user) applied to the selected paragraphs. If more than one style has been applied to the selection, the first style name is displayed.

Visual Basic for Applications
  MsgBox Selection.Paragraphs.Style.NameLocal

This example adds the name "MyH1" as the alias for the Heading 1 style in the active document.

Visual Basic for Applications
  ActiveDocument.Styles("Heading 1").NameLocal = "MyH1"

This example renames the style named "Test" to "Intro."

Visual Basic for Applications
  ActiveDocument.Styles("Test").NameLocal = "Intro"

See Also