Style Interface

Represents a single built-in or user-defined style.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
<GuidAttribute("0002092C-0000-0000-C000-000000000046")> _
Public Interface Style
'Usage
Dim instance As Style
[GuidAttribute("0002092C-0000-0000-C000-000000000046")]
public interface Style

Remarks

The Style object includes style attributes (font, font style, paragraph spacing, and so on) as properties of the Style object. The Style object is a member of the Styles collection. The Styles collection includes all the styles in the specified document.

Use Styles(index), where index is the style name, a WdBuiltinStyle constant or index number, to return a single Style object. You must exactly match the spelling and spacing of the style name, but not necessarily its capitalization.

The style index number represents the position of the style in the alphabetically sorted list of style names.

To apply a style to a range, paragraph, or multiple paragraphs, set the Style property to a user-defined or built-in style name.

Use the OrganizerCopy method to copy styles between documents and templates. Use the UpdateStyles method to update the styles in the active document to match the style definitions in the attached template. Use the OpenAsDocument method to open a template as a document so that you can modify the template styles.

See Also

Reference

Style Members

Microsoft.Office.Interop.Word Namespace