LinkLabel.Link Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the LinkLabel.Link class.
Overloads
LinkLabel.Link() |
Initializes a new instance of the LinkLabel.Link class. |
LinkLabel.Link(Int32, Int32) |
Initializes a new instance of the LinkLabel.Link class with the specified starting location and number of characters after the starting location within the LinkLabel. |
LinkLabel.Link(Int32, Int32, Object) |
Initializes a new instance of the LinkLabel.Link class with the specified starting location, number of characters after the starting location within the LinkLabel, and the data associated with the link. |
LinkLabel.Link()
Initializes a new instance of the LinkLabel.Link class.
public:
Link();
public Link ();
Public Sub New ()
Applies to
LinkLabel.Link(Int32, Int32)
Initializes a new instance of the LinkLabel.Link class with the specified starting location and number of characters after the starting location within the LinkLabel.
public:
Link(int start, int length);
public Link (int start, int length);
new System.Windows.Forms.LinkLabel.Link : int * int -> System.Windows.Forms.LinkLabel.Link
Public Sub New (start As Integer, length As Integer)
Parameters
- length
- Int32
The number of characters, after the starting character, to include in the link area.
Applies to
LinkLabel.Link(Int32, Int32, Object)
Initializes a new instance of the LinkLabel.Link class with the specified starting location, number of characters after the starting location within the LinkLabel, and the data associated with the link.
public:
Link(int start, int length, System::Object ^ linkData);
public Link (int start, int length, object linkData);
public Link (int start, int length, object? linkData);
new System.Windows.Forms.LinkLabel.Link : int * int * obj -> System.Windows.Forms.LinkLabel.Link
Public Sub New (start As Integer, length As Integer, linkData As Object)
Parameters
- length
- Int32
The number of characters, after the starting character, to include in the link area.
- linkData
- Object
The data associated with the link.