ImageEngine.LoadStaticIconLocation C# (CSharp) Method

LoadStaticIconLocation() public method

Load the Static Icon Image for the given iconName.
public LoadStaticIconLocation ( string iconName ) : string
iconName string The input iconName.
return string
    public string LoadStaticIconLocation(string iconName)
    {
        string toReturn = string.Empty;
        if (_staticIconsHashTable.ContainsKey(iconName))
        {
            string iconFile = Convert.ToString(_staticIconsHashTable[iconName]) + _iconsExt;
            toReturn = _iconsPath + iconFile;
        }
        return toReturn;
    }