Returns an IRange interface that represents the range the specified hyperlink is attached to.
[Visual Basic] Property Range As IRange [C#] IRange Range { get; set; } [C++] __property IRange* get_Range(); __property void set_Range(IRange* ); [JScript] function get Range() : IRange function set Range(IRange);
This example changes the font size for range which attached to the first hyperlink on worksheet one.
[C#]
book.Worksheets[1].Hyperlinks[1].Range.Font.Size = 14;
[Visual Basic]
book.Worksheets(1).Hyperlinks(1).Range.Font.Size = 14
[C++]
book->Worksheets->Item[1]->Hyperlinks->Item[1]->Range->Font->Size = 14;
IHyperlink Interface | NativeExcel Namespace | IWorksheet.Hyperlinks Property | IRange.Hyperlinks Property | IHyperlinks Interface