Share via


Shape.WebCommandButton Property (Publisher)

Returns the WebCommandButton object associated with the specified shape.

Syntax

expression .WebCommandButton

expression A variable that represents a Shape object.

Return Value

WebCommandButton

Example

This example creates a Web form Submit command button and sets the script path and file name to run when a user clicks the button.

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 = "http://www.tailspintoys.com/" _ 
 & "scripts/ispscript.cgi" 
End With