OnDropMarkerCollect() защищенный Метод

Raises the DropMarkerCollect event.
protected OnDropMarkerCollect ( DropMarkerCollectEventArgs e ) : void
e DropMarkerCollectEventArgs An that contains the event data.
Результат void
Пример #1
0
        internal bool Collect(bool dispose)
        {
            DropMarkerCollectEventArgs e = new DropMarkerCollectEventArgs(this);

            Scintilla.OnDropMarkerCollect(e);

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

            GotoStart();

            if (dispose)
            {
                Dispose();
            }

            return(true);
        }