void ISelectable.DrawSelection(MapGraphics g, RectangleF clipRect, bool designTimeSelection) { MapCore mapCore = GetMapCore(); GridLine[] array = GridLines; for (int i = 0; i < array.Length; i++) { GridLine gridLine = array[i]; g.DrawSelectionMarkers(gridLine.SelectionMarkerPositions, designTimeSelection, mapCore.SelectionBorderColor, mapCore.SelectionMarkerColor); } }