[]
Creates a new hyperlink cell renderer control with no destination URL.
public HyperLinkRenderer()
Public Sub New()
Creates a hyperlink cell renderer control with the specified destination URL.
public HyperLinkRenderer(string url)
Public Sub New(url As String)
Type | Name | Description |
---|---|---|
string | url | Destination URL to which to navigate |
Creates a hyperlink cell renderer control with the specified destination URL and image.
public HyperLinkRenderer(string url, string imageUrl)
Public Sub New(url As String, imageUrl As String)
Type | Name | Description |
---|---|---|
string | url | URL to which to navigate as the destination of the hyperlink |
string | imageUrl | Path and file name of the picture to display in the hyperlink cell |
Creates a hyperlink cell renderer control with the specified destination URL, image, and target window or frame.
public HyperLinkRenderer(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 as the destination of the hyperlink |
string | imageUrl | Path and file name of the picture to display in the hyperlink cell |
string | target | Target window or frame to display when the hyperlink is clicked |