[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IHyperlink

Interface IHyperlink

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a hyperlink.

public interface IHyperlink

Properties

Gets or sets the address of the target document.

string Address { get; set; }

Property Value

string

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; }

Property Value

string

Returns the name of the object (read-only).

string Name { get; }

Property Value

string

Returns the IRange object that represents the range the specified hyperlink is attached to.

IRange Range { get; }

Property Value

IRange

Gets or sets the ScreenTip text for the specified hyperlink.

string ScreenTip { get; set; }

Property Value

string

Returns the IShape object that represents the shape attached to the specified hyperlink.

IShape Shape { get; }

Property Value

IShape

Gets or sets the location within the document associated with the hyperlink.

string SubAddress { get; set; }

Property Value

string

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; }

Property Value

string

Methods

Deletes the hyperlink.

void Delete()