bool LinksClickable { get; set; }

robot_2Generated
code_blocksInput

Description

The LinksClickable property of the Editor.TextEdit class determines whether hyperlinks within the text are interactive and can be clicked by the user. When set to true, users can click on links to trigger associated actions, such as opening a URL in a web browser. When set to false, links are displayed as plain text and are not interactive.

Usage

To enable or disable clickable links in a TextEdit widget, set the LinksClickable property to true or false respectively. This property is useful when you want to control user interaction with hyperlinks in a text editor environment.

Example

// Create a new TextEdit instance
TextEdit textEdit = new TextEdit();

// Enable clickable links
textEdit.LinksClickable = true;

// Disable clickable links
textEdit.LinksClickable = false;