Cell.Range Property

Word Developer Reference

Returns a Range object that represents the portion of a document that's contained in the specified object.

Syntax

expression.Range

expression   A variable that represents a Cell object.

Example

This example copies thecontents of the first cell in the first row in the first table.

Visual Basic for Applications
  If ActiveDocument.Tables.Count >= 1 Then _
    ActiveDocument.Tables(1).Rows(1).Cells(1).Range.Copy

See Also