ImageEngine.LoadSpriteIcon C# (CSharp) Метод

LoadSpriteIcon() публичный Метод

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.
Результат string
    public string LoadSpriteIcon(string tag)
    {
        //  Using Sprites
        string iconSpan = "<span class='ss_sprite ss_" + _iconsHashTable[tag] + " ' > </span>";
        return iconSpan;
    }