How to: Create Word Tables
Note |
|---|
|
Some code examples in this topic use the this or Me keyword or the |
The Tables collection is a member of the Document, Selection and Range objects, which means that you can create a table in any of those contexts. You use the Add method of the Tables collection to add a table at the specified range.
To add a simple table to a document
-
Use the Add method to add a table consisting of three rows and four columns at the beginning of the document.
When you create a table, it is automatically added to the Tables collection of the Microsoft.Office.Tools.Word.Document. You can then refer to the table by its item number using the Item property, as shown in the following code.
To refer to a table by item number
-
Use the Item property and supply the item number of the table that you want to refer to:
Formatting Tables
Each Table object also has a Range property that enables you to set direct formatting attributes.
Note