C#:利用 InstalledFontCollection 來判斷
private bool IsFontInstalled(string FontNameWithoutExtension)
{
InstalledFontCollection installedFontCollection = new InstalledFontCollection();
return installedFontCollection.Families.Any(font => font.Name == FontNameWithoutExtension);
}
VFP:利用 AFont() 來判斷
FUNCTION IsFontInstalled(FontNameWithoutExtension as string) AS Boolean
RETURN AFONT(laFont,FontNameWithoutExtension)
ENDFUNC
- 參考資料
- 網路討論
- 作法:列舉已安裝的字型
沒有留言:
張貼留言