ICSharpCode.TextEditor.Document.SelectionManager.ClearWithoutUpdate C# (CSharp) 메소드

ClearWithoutUpdate() 개인적인 메소드

private ClearWithoutUpdate ( ) : void
리턴 void
        void ClearWithoutUpdate()
        {
            while (selectionCollection.Count > 0) {
                ISelection selection = selectionCollection[selectionCollection.Count - 1];
                selectionCollection.RemoveAt(selectionCollection.Count - 1);
                document.RequestUpdate(new TextAreaUpdate(TextAreaUpdateType.LinesBetween, selection.StartPosition.Y, selection.EndPosition.Y));
                OnSelectionChanged(EventArgs.Empty);
            }
        }