Kimono.KMimeType.IconName C# (CSharp) Method

IconName() public method

Return the filename of the icon associated with the mimetype. Use KIconLoader.LoadMimeTypeIcon to load the icon. The url argument is unused, but is provided so that KMimeType-derived classes can use it (e.g. KFolderType uses the URL to return one out of 2 icons)
public IconName ( Kimono.KUrl url ) : string
url Kimono.KUrl
return string
        public string IconName(KUrl url)
        {
            return (string) interceptor.Invoke("iconName#", "iconName(const KUrl&) const", typeof(string), typeof(KUrl), url);
        }

Same methods

KMimeType::IconName ( ) : string