tips_md_wht.gif

Tip of the Month
October 2002

Previous Tips

Resetting Paragraph Formatting

If you are using styles in your documents, you can reset a paragraph to the default settings (according to the assigned style) by positioning the insertion point anywhere within the paragraph and pressing CTRL+Q.

If you are creating macros using VBA you can achieve the same effect by using the Selection.Paragraphs.Reset method. This command counteracts the effects of any alignment, spacing, tabs, indentation, or pagination that was done manually to the paragraph. The method returns the current paragraph (the one that is selected or where the insertion point is located) to the default paragraph specifications based on the style assigned to the paragraph.

If you are using WordBasic to create your macros (under Word 6 or Word 95), then you can use the ResetPara command to accomplish the same task.

Home