

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. MsgBox "This document contains " & intWords & " words."

IntWords = ActiveDocument.BuiltInDocumentProperties(wdPropertyWords) This example displays the number of words in the active document. In today’s article we’ll have a look at the Microsoft Word document properties, content controls, quick parts and bookmarks, and how you can access and use these objects in your own add-ins. Sub ListProperties()įor Each proDoc In ActiveDocument.BuiltInDocumentProperties This example inserts a list of built-in properties at the end of the active document. Use the CustomDocumentProperties property to return the collection of custom document properties. If Microsoft Word doesn't define a value for one of the built-in document properties, reading the Value property for that document property generates an error.įor information about returning a single member of a collection, see Returning an object from a collection. We have already demonstrated how to create form field.This article mainly shows you how developers fill form field in word document in C only with 4 simple steps by using a standalone. To return a single DocumentProperty object that represents a specific built-in document property, use the BuiltinDocumentProperties property. A variable that represents a Document object. Returns a DocumentProperties collection that represents all the built-in document properties for the specified document.
