ARCed.Scintilla.DropMarkers.Drop C# (CSharp) Method

Drop() public method

Drops a DropMarker at the specified document position
Dropping a DropMarker creates a visual marker (red triangle) indicating the DropMarker point.
public Drop ( int position ) : DropMarker
position int
return DropMarker
        public DropMarker Drop(int position)
        {
            var dm = new DropMarker(position, position, this.GetCurrentTopOffset(), Scintilla);
            this._allDocumentDropMarkers.Add(dm);
            this._markerStack.Push(dm);
            Scintilla.ManagedRanges.Add(dm);

            //	Force the Drop Marker to paint
            Scintilla.Invalidate(dm.GetClientRectangle());
            return dm;
        }

Same methods

DropMarkers::Drop ( ) : DropMarker