OnDropMarkerCollect() 보호된 메소드

Raises the DropMarkerCollect event.
protected OnDropMarkerCollect ( DropMarkerCollectEventArgs e ) : void
e DropMarkerCollectEventArgs An that contains the event data.
리턴 void
예제 #1
0
파일: DropMarker.cs 프로젝트: cybort/iBAT
        internal bool Collect(bool dispose)
        {
            DropMarkerCollectEventArgs e = new DropMarkerCollectEventArgs(this);

            Scintilla.OnDropMarkerCollect(e);

            if (e.Cancel)
            {
                return(false);
            }

            GotoStart();

            if (dispose)
            {
                Dispose();
            }

            return(true);
        }