Word) (Column 物件
代表單一表格欄。 Column 物件是 資料行 成員 集合。 Columns 集合包含表格、 選取範圍或範圍中的所有欄。
使用 資料行 (Index),其中 Index 是索引編號,可以傳回單一 Column 物件。 索引編號代表資料行 (從左到右統計) Columns 集合中的位置。
下列範例會選取使用中文件內第一個表格的第一欄。
ActiveDocument.Tables(1).Columns(1).Select
使用 資料行 使用 Cell 物件傳回 Column 物件的屬性。 下列範例會刪除一個儲存格中的文字、 插入新的文字,然後排序整個欄。
With ActiveDocument.Tables(1).Cell(1, 1)
.Range.Delete
.Range.InsertBefore "Sales"
.Column.Sort
End With
使用 [ 新增 若要將欄新增至表格的方法。 下列範例會將欄新增至使用中文件的第一個表格,然後它讓欄寬一致。
If ActiveDocument.Tables.Count >= 1 Then
Set myTable = ActiveDocument.Tables(1)
myTable.Columns.Add BeforeColumn:=myTable.Columns(1)
myTable.Columns.DistributeWidth
End If
備註
使用 資訊 屬性與 Selection 物件來傳回目前的欄數。 下列範例會選取目前的欄,然後在訊息方塊中顯示的欄號。
If Selection.Information(wdWithInTable) = True Then
Selection.Columns(1).Select
MsgBox "Column " _
& Selection.Information(wdStartOfRangeColumnNumber)
End If
名稱 |
---|
Application |
Borders |
Cells |
Creator |
Index |
IsFirst |
IsLast |
NestingLevel |
Next |
Parent |
PreferredWidth |
PreferredWidthType |
Previous |
Shading |
Width |
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。