Cell.Parent Property

Word Developer Reference

Returns an Object that represents the parent object of the specified Cell object.

Syntax

expression.Parent

expression   A variable that represents a Cell object.

Example

This example sets a variable to the first cell in the first table of the active document, changes the width of the cell to 36 points, and removes borders from the table.

Visual Basic for Applications
  Set objCell = ActiveDocument.Tables(1).Cell(1, 1)
With objCell
    .SetWidth ColumnWidth:=36, RulerStyle:=wdAdjustNone
    .Parent.Borders.Enable = False
End With

See Also