Shape.WebCommandButton 屬性 (Publisher)
會傳回與指定圖案相關的 WebCommandButton 物件。
語法
運算式。WebCommandButton
表達 代表 Shape 物件的變數。
傳回值
WebCommandButton
範例
本範例會建立 Web 表單 Submit 命令按鈕,並設定當使用者選擇按鈕時要執行的腳本路徑和檔案名。
Dim shpNew As Shape
Dim wcbTemp As WebCommandButton
Set shpNew = ActiveDocument.Pages(1).Shapes.AddWebControl _
(Type:=pbWebControlCommandButton, Left:=150, _
Top:=150, Width:=75, Height:=36)
Set wcbTemp = shpNew.WebCommandButton
With wcbTemp
.ButtonText = "Submit"
.ButtonType = pbCommandButtonSubmit
.ActionURL = "https://www.tailspintoys.com/" _
& "scripts/ispscript.cgi"
End With
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。