RichTextBlock.IsTextSelectionEnabled Property

Definition

Gets or sets a value that determines whether text content of the RichTextBlock can be selected for clipboard or drag purposes, or for UI styling changes that indicate selected text.

public:
 property bool IsTextSelectionEnabled { bool get(); void set(bool value); };
bool IsTextSelectionEnabled();

void IsTextSelectionEnabled(bool value);
public bool IsTextSelectionEnabled { get; set; }
var boolean = richTextBlock.isTextSelectionEnabled;
richTextBlock.isTextSelectionEnabled = boolean;
Public Property IsTextSelectionEnabled As Boolean
<RichTextBlock IsTextSelectionEnabled="bool" />

Property Value

Boolean

bool

true if text content of the RichTextBlock can be selected for clipboard or drag purposes. false if text cannot be selected. The default is true.

Applies to