Hyperlink.EmailSubject property (PowerPoint)
Returns or sets the text string of the hyperlink subject line. The subject line is appended to the Internet address (URL) of the hyperlink. Read/write.
Syntax
expression.EmailSubject
expression A variable that represents an Hyperlink object.
Return value
String
Remarks
This property is commonly used with email hyperlinks. The value of this property takes precedence over any email subject specified in the Address property of the same Hyperlink object.
Example
This example sets the email subject line of the first hyperlink on slide one in the active presentation.
ActivePresentation.Slides(1).Hyperlinks(1) _
.EmailSubject = "Quote Request"
See also
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.