[]
Represents a hyperlink.
public interface IHyperlink
Gets or sets the address of the target document.
string Address { get; set; }
Gets or sets the text string of the specified hyperlink’s e-mail subject line. The subject line is appended to the hyperlink’s address.
string EmailSubject { get; set; }
Returns the name of the object (read-only).
string Name { get; }
Returns the IRange object that represents the range the specified hyperlink is attached to.
IRange Range { get; }
Gets or sets the ScreenTip text for the specified hyperlink.
string ScreenTip { get; set; }
Returns the IShape object that represents the shape attached to the specified hyperlink.
IShape Shape { get; }
Gets or sets the location within the document associated with the hyperlink.
string SubAddress { get; set; }
Gets or sets the text to be displayed for the specified hyperlink. The default value is the address of the hyperlink.
string TextToDisplay { get; set; }
Deletes the hyperlink.
void Delete()