MapAround.UI.LegendElement.LegendElement C# (CSharp) Method

LegendElement() public method

Initializes a new instance of MapAround.UI.LegendElement.
public LegendElement ( Image image, string label ) : System
image Image A System.Drawing.Image instance containing the image of element
label string A label of the element
return System
        public LegendElement(Image image, string label)
        {
            _image = image;
            _label = label;
        }
    }
LegendElement