ARCed.Scintilla.DropMarker.Collect C# (CSharp) Method

Collect() private method

private Collect ( bool dispose ) : bool
dispose bool
return bool
        internal bool Collect(bool dispose)
        {
            var e = new DropMarkerCollectEventArgs(this);
            Scintilla.OnDropMarkerCollect(e);

            if (e.Cancel)
                return false;

            GotoStart();

            if (dispose)
                this.Dispose();

            return true;
        }

Same methods

DropMarker::Collect ( ) : bool