ImageEngine.LoadStaticIconLocation C# (CSharp) Méthode

LoadStaticIconLocation() public méthode

Load the Static Icon Image for the given iconName.
public LoadStaticIconLocation ( string iconName ) : string
iconName string The input iconName.
Résultat 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;
    }