ICSharpCode.AvalonEdit.Editing.LineNumberMargin.OnMouseMove C# (CSharp) 메소드

OnMouseMove() 보호된 메소드

protected OnMouseMove ( System.Windows.Input.MouseEventArgs e ) : void
e System.Windows.Input.MouseEventArgs
리턴 void
        protected override void OnMouseMove(MouseEventArgs e)
        {
            if (selecting && textArea != null && TextView != null) {
                e.Handled = true;
                SimpleSegment currentSeg = GetTextLineSegment(e);
                if (currentSeg == SimpleSegment.Invalid)
                    return;
                ExtendSelection(currentSeg);
            }
            base.OnMouseMove(e);
        }