Document.Kind property (Word)

Returns or sets the format type that Microsoft Word uses when automatically formatting the specified document. Read/write WdDocumentKind.

Syntax

expression. Kind

expression Required. A variable that represents a Document object.

Example

This example asks the user whether the active document is an email message. If the response is Yes, the document is formatted as an email message.

response = MsgBox("Is this document an email message?", vbYesNo) 
If response = vbYes Then 
 ActiveDocument.Kind = wdDocumentEmail 
 ActiveDocument.Content.AutoFormat 
End If

See also

Document Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.