ImageEngine.LoadSpriteIcon C# (CSharp) Method

LoadSpriteIcon() public method

Load Icons from Icon Sprite (Uses sprite.css) for loading Icons. This method is quicker as compared to using the LoadIconLocation() Method of ImageEngine.cs.
public LoadSpriteIcon ( string tag ) : string
tag string The input Category.
return string
    public string LoadSpriteIcon(string tag)
    {
        //  Using Sprites
        string iconSpan = "<span class='ss_sprite ss_" + _iconsHashTable[tag] + " ' > </span>";
        return iconSpan;
    }