public SymbologyRendererBase(LegendControlBase legend)
 {
     if (legend == null)
     {
         throw new ArgumentNullException("legend");
     }
     Legend        = legend;
     Constants     = new Constants(legend);
     _boxLineColor = Color.Gray;
 }
Exemple #2
0
 public LayerRenderer(LegendControlBase legend)
     : base(legend)
 {
 }
 public VectorSymbologyRenderer(LegendControlBase legend)
     : base(legend)
 {
 }
Exemple #4
0
        public GroupRenderer(LegendControlBase legend) : base(legend) 
        {

        }
Exemple #5
0
 public RasterSymbologyRenderer(LegendControlBase legend)
     : base(legend)
 {
 }
Exemple #6
0
 public WmsSymbologyRenderer(LegendControlBase legend)
     : base(legend)
 {
 }