Word) (Selection.Information 屬性
會傳回指定之選取範圍的相關資訊。 唯讀 Variant 。
語法
expression。 Information
( _Type_
)
需要 expression。 代表 Selection 物件的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Type | 必要 | WdInformation | 資訊類型 |
範例
本範例顯示使用中文件的目前頁碼及總頁數。
MsgBox "The selection is on page " & _
Selection.Information(wdActiveEndPageNumber) & " of page " _
& Selection.Information(wdNumberOfPagesInDocument)
如果選取範圍位於表格中,則本範例選取該表格。
If Selection.Information(wdWithInTable) Then _
Selection.Tables(1).Select
本範例顯示訊息,指出目前的章節編號。
Selection.Collapse Direction:=wdCollapseStart
MsgBox "The insertion point is in section " & _
Selection.Information(wdActiveEndSectionNumber)
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。