Wisej.Web.LinkLabel
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.5.0.0)
Represents an hyper-link control.
Initializes a new default instance of the LinkLabel class.
Color: Returns or sets the color used to display an active link (while being pressed).
Color: Returns or sets the color used when displaying a disabled link.
LinkArea: Returns or sets the range in the text to treat as a link.
Throws:
ArgumentOutOfRangeException The Start property of the LinkArea object is less than zero; or the Length property of the LinkArea object is less than -1.
LinkBehavior: Returns or sets a value that represents the behavior of a link.
Color: Returns or sets the color used when displaying a link.
LinkLabelLinkClickedEventHandler Fired when a link is clicked within the control.
EventHandler Fired when the value of the TabStop property changes.
Name | Description |
---|---|
Bindable components implement this interface.
Allows a control to act like a button on a Form.
All wisej components implement this interface.
All wisej controls derived from the Control class must implement this interface.
Allows an object to serialize itself.
Wisej.Web.LinkArea
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.5.0.0)
Represents an area within a LinkLabel control that represents a hyperlink within the control.
Initializes a new instance of the LinkArea class.
Name | Type | Description |
---|---|---|
Boolean: Returns a value indicating whether the LinkArea is empty.
Int32: Returns or sets the number of characters in the link area.
Int32: Returns or sets the starting location of the link area within the text of the LinkLabel.
Wisej.Web.LinkLabelLinkClickedEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.5.0.0)
Represents the method that will handle the LinkClicked event of a LinkLabel.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
Wisej.Web.LinkLabelLinkClickedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.5.0.0)
Provides data for the LinkClicked event.
Initializes a new instance of the LinkLabelLinkClickedEventArgs class with the specified link.
Name | Type | Description |
---|---|---|
String: Returns the link that was clicked.
Name | Description |
---|---|
Name | Description |
---|---|
Returns or sets the range in the text to treat as a link.
sender
The source of the event.
e
A LinkLabelLinkClickedEventArgs that contains the event data.
Fired when a link is clicked within the control.
start
The zero-based starting location of the link area within the text of the LinkLabel.
length
The number of characters, after the starting character, to include in the link area.
link
The link that was clicked.
Represents the method that will handle the LinkClicked event of a LinkLabel.