Table of Contents

Class WindowTextSelection

Namespace
WindowSill.API
Assembly
WindowSill.API.dll

Represents information about text selection within a window, including the selected text content and its editability status.

public sealed record WindowTextSelection : WindowInfo, IEquatable<WindowInfo>, IEquatable<WindowTextSelection>
Inheritance
WindowTextSelection
Implements
Inherited Members
Extension Methods

Properties

IsReadOnly

Gets a value indicating whether the selected text cannot be modified or edited by the user.

public required bool IsReadOnly { get; init; }

Property Value

bool

SelectedText

Gets the text content that is currently selected within the window.

public required string SelectedText { get; init; }

Property Value

string