NSMutableAttributedString.BeginEditing Method
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.
Marks the beginning of changes.
[Foundation.Export("beginEditing")]
public virtual void BeginEditing ();
abstract member BeginEditing : unit -> unit
override this.BeginEditing : unit -> unit
- Attributes
Remarks
You can invoke this method before you make a series of changes to a NSMutableAttributedString to inform the class that you will be making more than one change and that it does not need to compute any expensive internal data structures on each end. The internal data structures will all be updated when you call the M:Foundation.EndEditing()