共用方式為


Row.Range Property

Word Developer Reference

Returns a Range object that represents the portion of a document that is contained within the specified table row.

Syntax

expression.Range

expression   Required. A variable that represents a Row object.

Example

This example copies the first row in table one.

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

See Also