Cell.Parent property (Word)
Returns an Object that represents the parent object of the specified Cell object.
expression.Parent
expression A variable that represents a 'Cell' object.
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.
Set objCell = ActiveDocument.Tables(1).Cell(1, 1)
With objCell
.SetWidth ColumnWidth:=36, RulerStyle:=wdAdjustNone
.Parent.Borders.Enable = False
End With
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.