Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Generally, the following hyperlinks are supported by Aspose.Cells.GridWeb:
The sections below describe the use of all types of hyperlinks in detail. It also discusses how to access or remove links.
URL hyperlinks look like simple hyperlinks that you normally see on websites. A URL hyperlink works like an anchor in a cell. Whenever it is clicked, it navigates to a web page or opens a new browser window.
There are different types of URL hyperlinks:
Developers can specify an image for the hyperlink. If an image isn’t specified, a text hyperlink is created; otherwise, an image hyperlink is created.
To add a text hyperlink to a worksheet:
The example below adds two hyperlinks to a worksheet. One has no target while the other is set to _parent.
Output: text hyperlinks added to worksheet

To add an image hyperlink:
Output: image hyperlinks added to worksheet

Setting the image hyperlink’s AltText serves a similar function to setting an
The image for the image URL could not be found

A cell command hyperlink is a special type of hyperlink which triggers a server‑side event instead of opening a web page. Developers can add code to the server‑side event and perform any task when the hyperlink is clicked. This feature enables developers to create more interactive applications.
To add a cell command hyperlink:
A cell command hyperlink has been added to worksheet

Developers need to create an event handler for the GridWeb control’s CellCommand event to perform specific tasks when a specific cell command hyperlink is clicked. The CellCommand event’s event handler provides an object of the CellEventArgs type that offers the Argument property. Use the Argument property to identify a specific hyperlink by comparing its CellCommand value.
The example below creates an event handler for the cell command hyperlink created in the code above. The hyperlink’s CellCommand was set to Click. So, in the event handler, first check it and then add code which displays a message in the A6 cell.
The event handler is invoked when the hyperlink is clicked.
Output: text added to A6 cell when hyperlink is clicked

To access an existing hyperlink:
To remove a hyperlink:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.