Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Description

Creates

a

new

hyperlink

in

the

cell

pointing

to

the

specified

href.

This

hyperlink

is

automatically

added

to

the

worksheet.

The

cell

value

will

be

converted

to

hyperlinks.

Creating

hyperlinks

to

other

cells

within

the

workbook

are

not

supported.

However,

you

may

use

a

hyperlink

formula

to

achieve

the

same

functionality.

For

example,

given

the

formula

{

=HYPERLINK("Sheet1!C3",

"Link

to

C3")

}

,

{

Excerpt
Wiki Markup
:|=}
Code Block
csharp
csharp
title
C#
cellA1.Formula = "=HYPERLINK(\"Sheet1!C3\", \"Link to C3\")";
{code}
{code:
|title=}
Code Block
vb.net
vb.net
titlevb.net
TODO
{code}

Signature
C#
C#
 public Hyperlink CreateHyperlink(System.String href)

...