ICSharpCode.TextEditor.Document.SelectionManager.Insert C# (CSharp) Method

Insert() private method

Used internally, do not call.
private Insert ( int offset, string text ) : void
offset int
text string
return void
        internal void Insert(int offset, string text)
        {
            //			foreach (ISelection selection in SelectionCollection) {
            //				if (selection.Offset > offset) {
            //					selection.Offset += text.Length;
            //				} else if (selection.Offset + selection.Length > offset) {
            //					selection.Length += text.Length;
            //				}
            //			}
        }