TextElementEditingBehaviorAttribute.IsMergeable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether the RichTextBox can merge two adjacent text elements.
public:
property bool IsMergeable { bool get(); void set(bool value); };
public bool IsMergeable { get; set; }
member this.IsMergeable : bool with get, set
Public Property IsMergeable As Boolean
Property Value
true
if a RichTextBox is free to merge adjacent custom text elements that have identical property values; otherwise, false
.
Remarks
When IsMergeable is true
, the decision to combine adjacent text elements that have identical property values is left up to the RichTextBox. When IsMergeable is false
, a RichTextBox does not combine two adjacent text elements.
TextElementEditingBehaviorAttribute is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.