共用方式為


Row.Select Method

Word Developer Reference

Selects the specified table row.

Syntax

expression.Select

expression   Required. A variable that represents a Row object.

Remarks

After using this method, use the Selection object to work with the selected row. For more information, see Working with the Selection Object.

Example

This example selects row one in table one of Report.doc.

Visual Basic for Applications
  Documents("Report.doc").Tables(1).Rows(1).Select

See Also