Visio (的 Page.Background 屬性)
會決定頁面是否為背景頁面。 讀取/寫入。
語法
運算式。背景
表達 代表 Page 物件的變數。
傳回值
整數
註解
如果是標記頁面,Background 屬性一定是 True。
範例
下列 Microsoft Visual Basic for Applications (VBA) 宏會示範如何逐一查看檔的頁面,並判斷頁面是前景或背景頁面。 它會在清單方塊中顯示前景頁面。 若要執行這個宏,請先將包含清單方塊控制項的使用者表單插入您的專案中。
Public Sub Background_Example()
Dim vsoPages As Visio.Pages
Dim vsoPage As Visio.Page
Dim intCounter As Integer
'Get the Pages collection.
Set vsoPages = ThisDocument.Pages
'Make sure the list box is cleared.
UserForm1.ListBox1.Clear
'Iterate through the collection.
For intCounter = 1 To vsoPages.Count
'Retrieve the Page object at the current index.
Set vsoPage = vsoPages(intCounter)
'Check whether the current page is a background page.
'Display the names of all the foreground pages.
If vsoPage.Background = False Then
UserForm1.ListBox1.AddItem vsoPage.Name
End If
Next intCounter
'Display the user form.
UserForm1.Show
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。