Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
Sets or returns a String representing the email address to use when processing web form data. Read/write.
Syntax
expression.EmailAddress
expression A variable that represents a WebCommandButton object.
Return value
String
Example
This example sets Microsoft Publisher to process data on the web form in the current publication by sending an email message to a specified email address.
Sub WebFormData()
With ThisDocument.Pages(1).Shapes(1).WebCommandButton
.DataRetrievalMethod = pbSubmitDataRetrievalEmail
.EmailAddress = "someone@example.com"
.EmailSubject = "Web form data"
End With
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.