次の方法で共有


Shape.WebCommandButton プロパティ (Publisher)

指定した図形に関連付けられた WebCommandButton オブジェクトを取得します。

構文

WebCommandButton

Shape オブジェクトを表す変数。

戻り値

WebCommandButton

次の使用例は、Web フォーム の [送信 ] コマンド ボタンを作成し、ユーザーがボタンを選択したときに実行するスクリプト パスとファイル名を設定します。

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 のサポートおよびフィードバックを参照してください。