CreateAutoTextEntry Method
Adds a new AutoTextEntry object to the AutoTextEntries collection, based on the current selection.
expression**.CreateAutoTextEntry(Name, StyleName)**
expression Required. An expression that returns a Selection object.
Name Required String. The text the user must type to call the new AutoText entry.
StyleName Required String. The category in which the new AutoText entry will be listed on the AutoText menu.
Example
This example creates a new AutoText entry named "handdel" under the category "Mailing Instructions," given "HAND DELIVERY" as the currently selected text.
Selection.CreateAutoTextEntry "handdel", _
"Mailing Instructions"
Applies to | Selection Object