private void UpdateLabelsFontColor()
 {
     foreach (Graphic lp in _layer.GetLabelPoints())
     {
         LabelBreak lb       = (LabelBreak)lp.Legend;
         LabelSet   labelSet = _layer.LabelSet;
         if (!labelSet.ColorByLegend)
         {
             lb.Color = labelSet.LabelColor;
         }
         lb.Font = labelSet.LabelFont;
     }
 }