Word) (Bookmark.Column 屬性
True 是表示 如果指定的書籤為表格欄。 唯讀的 Boolean。
語法
運算式。列
需要 expression。 代表 Bookmark 物件的變數。
範例
本範例建立一個有書籤的表格,然後顯示訊息方塊,確認書籤為表格的一欄。
Dim docNew As Document
Dim tableNew As Table
Dim rangeCell As Range
Set docNew = Documents.Add
Set tableNew = docNew.Tables.Add(Selection.Range, 3, 5)
Set rangeCell = tableNew.Cell(3,5).Range
rangeCell.InsertAfter "Cell(3,5)"
docNew.Bookmarks.Add Name:="BKMK_Cell35", Range:=rangeCell
MsgBox docNew.Bookmarks(1).Column
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。