OrganizerRename Method

Applies To

Application object.

Description

Renames the specified style, AutoText entry, toolbar, or macro project item in a document or template.

Syntax

expression.OrganizerRename(Source, Name, NewName, Object)

expression Required. An expression that returns an Application object.

Source Required String. The file name of the document or template that contains the item you want to rename.

Name Required String. The name of the style, AutoText entry, toolbar, or macro you want to rename.

NewName Required String. The new name for the item.

Object Required Long. The kind of item you want to copy. Can be one of the following WdOrganizerObject constants: wdOrganizerObjectAutoText, wdOrganizerObjectCommandBars, wdOrganizerObjectProjectItems, or wdOrganizerObjectStyles.

See Also

OrganizerCopy method, OrganizerDelete method.

Example

This example changes the name of the style named "SubText" in the active document to "SubText2."

For Each sty In ActiveDocument.Styles
    If sty.NameLocal = "SubText" Then
        Application.OrganizerRename Source:=ActiveDocument.Name, _
            Name:="SubText", NewName:="SubText2", _
            Object:=wdOrganizerObjectStyles
    End If
Next sty
This example changes the name of the macro module named "Module1" in the attached template to "MyMacros."

dot = ActiveDocument.AttachedTemplate.Name
Application.OrganizerRename Source:=dot, Name:="Module1", _
    NewName:="MyMacros", Object:=wdOrganizerObjectProjectItems