Word) (Selection.Rows 屬性
會傳回 Rows 集合,代表範圍、選取範圍或表格中的所有表格列。 唯讀。
語法
運算式。行
表達 代表 Selection 物件的變數。
註解
如需傳回集合中單一成員的資訊,請參閱 從集合傳回物件。
範例
這個範例會在列中含有插入點之儲存格的周圍加上框線。
Selection.Collapse Direction:=wdCollapseStart
If Selection.Information(wdWithInTable) = True Then
Selection.Rows(1).Borders.OutsideLineStyle = wdLineStyleSingle
Else
MsgBox "The insertion point is not in a table."
End If
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。