Dialog.Show 方法 (Word)
會顯示與相似起始指定內建 Word 對話方塊中的動作。 會傳回 Long ,指出哪一個按鈕已按下關閉對話方塊。
語法
運算式。顯示 ( _TimeOut_
)
需要 expression。 代表 'Dialog' 物件的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
超時 | 選用 | Variant | Word 將會在自動關閉對話方塊之前等候的時間。 一個單位大約是 0.001 秒。 同時進行的系統活動可能會增加有效的時間值。 如果省略這個引數,當使用者關閉對話方塊時,此對話方塊就會關閉。 |
傳回值
Long
註解
下表顯示 Show 方法傳回的值的意義。
傳回值 | 說明 |
---|---|
-2 | The Close button. |
-1 | The OK button. |
0 (零) | The Cancel button. |
> 0 (zero) | 指令按鈕:1 是指第一個按鈕,2 是指第二個按鈕,依此類推。 |
範例
This example displays the Find and Replace dialog box with the word "Blue" preset in the Find what text box.
With Dialogs(wdDialogEditFind)
.Find = "Blue"
.Show
End With
This example displays and carries out any action initiated in the Open dialog box. 檔案名會設定為 , 以便顯示所有檔案名。
With Dialogs(wdDialogFileOpen)
.Name = "*.*"
.Show
End With
This example displays and carries out any action initiated in the Zoom dialog box. If there are no actions initiated for approximately 9 seconds, the dialog box is closed.
Dialogs(wdDialogViewZoom).Show TimeOut:=9000
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。