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

Remove() private method

Used internally, do not call.
private Remove ( int offset, int length ) : void
offset int
length int
return void
        internal void Remove(int offset, int length)
        {
            //			foreach (ISelection selection in selectionCollection) {
            //				if (selection.Offset > offset) {
            //					selection.Offset -= length;
            //				} else if (selection.Offset + selection.Length > offset) {
            //					selection.Length -= length;
            //				}
            //			}
        }