共用方式為


RichTextBlock.IsTextSelectionEnabled 屬性

定義

取得或設定值,這個值會決定是否可以針對剪貼簿或拖曳目的選取 RichTextBlock 的文字內容,或用於指出選取文字的 UI 樣式變更。

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" />

屬性值

Boolean

bool

如果可以針對剪貼簿或拖曳目的選取RichTextBlock的文字內容,則為true。 如果無法選取文字,則為false。 預設值為 True

適用於