Class LinkClickedEventArgs
- Namespace
- SharpConsoleUI.Events
- Assembly
- SharpConsoleUI.dll
Event arguments for when a link is clicked.
public record LinkClickedEventArgs : IEquatable<LinkClickedEventArgs>
- Inheritance
-
LinkClickedEventArgs
- Implements
- Inherited Members
- Extension Methods
Constructors
LinkClickedEventArgs(string, string, MouseEventArgs?)
Event arguments for when a link is clicked.
public LinkClickedEventArgs(string Url, string Text, MouseEventArgs? Mouse = null)
Parameters
UrlstringTextstringMouseMouseEventArgs
Properties
Mouse
public MouseEventArgs? Mouse { get; init; }
Property Value
Text
public string Text { get; init; }
Property Value
Url
public string Url { get; init; }