[]
        
Creates a new hyperlink cell with no destination URL.
public HyperLinkCellType()
Public Sub New()
Creates a new hyperlink cell with the specified destination URL.
public HyperLinkCellType(string url)
Public Sub New(url As String)
| Type | Name | Description | 
|---|---|---|
| string | url | URL to which to navigate when the hyperlink is clicked  | 
    
Creates a new hyperlink cell with the specified destination URL and image.
public HyperLinkCellType(string url, string imageUrl)
Public Sub New(url As String, imageUrl As String)
| Type | Name | Description | 
|---|---|---|
| string | url | URL to which to navigate when the hyperlink is clicked  | 
    
| string | imageUrl | Path and file name of the picture to display in the cell  | 
    
Creates a new hyperlink cell with the specified destination URL, image, and target.
public HyperLinkCellType(string url, string imageUrl, string target)
Public Sub New(url As String, imageUrl As String, target As String)
| Type | Name | Description | 
|---|---|---|
| string | url | URL to which to navigate when the hyperlink is clicked  | 
    
| string | imageUrl | Path and file name of the picture to display in the cell  | 
    
| string | target | String with hyperlink target window or frame  |