Share via


ButtonText Property [Publisher 2003 VBA Language Reference]

Returns or sets a String that represents the text that appears on the face of a Web command button. Read/write.

expression.ButtonText

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example creates a new Web command button, assigns text to appear on its face, and specifies an e-mail address to which to send the form data.

Sub NewWebForm()
    With ActiveDocument.Pages.Add(Count:=1, After:=1)
        With .Shapes.AddWebControl(Type:=pbWebControlCommandButton, _
                Left:=72, Top:=72, Width:=72, Height:=36)
            With .WebCommandButton
                .ButtonType = pbCommandButtonSubmit
                .ButtonText = "Send Form:"
                .EmailAddress = "someone@example.com"
            End With
        End With
    End With
End Sub

Applies to | WebCommandButton Object