Hex1bPasteEvent
Namespace: Hex1b.Input
Assembly: Hex1b.dll
Event emitted when a bracketed paste sequence (ESC[200~ ... ESC[201~) is detected. The context provides streaming access to the paste data.
csharp
public sealed record Hex1bPasteEvent : Hex1bEvent, IEquatable<Hex1bEvent>, IEquatable<Hex1bPasteEvent>Inheritance
Object → Hex1bEvent → Hex1bPasteEvent
Implements
Constructors
Hex1bPasteEvent(PasteContext)
Event emitted when a bracketed paste sequence (ESC[200~ ... ESC[201~) is detected. The context provides streaming access to the paste data.
Parameters:
Paste(PasteContext): The paste context providing streaming access to the pasted content.
csharp
public Hex1bPasteEvent(PasteContext Paste)Properties
Paste
The paste context providing streaming access to the pasted content.
Returns: PasteContext
csharp
public PasteContext Paste { get; init; }