Table of Contents

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

Url string
Text string
Mouse MouseEventArgs

Properties

Mouse

public MouseEventArgs? Mouse { get; init; }

Property Value

MouseEventArgs

Text

public string Text { get; init; }

Property Value

string

Url

public string Url { get; init; }

Property Value

string