N Nathan Sokalski Jul 22, 2006 #1 I need to get a list of the available fonts as some type of collection or array. How can I do this? Thanks.
I need to get a list of the available fonts as some type of collection or array. How can I do this? Thanks.
H Herfried K. Wagner [MVP] Jul 23, 2006 #2 Nathan Sokalski said: I need to get a list of the available fonts as some type of collection or array. How can I do this? Click to expand... Are you talking about Windows Forms or Web Forms? Do you want to enumerate fonts on the client or on the server? \\\ Dim g As Graphics = Me.CreateGraphics() .... = FontFamily.GetFamilies(g) g.Dispose() ///
Nathan Sokalski said: I need to get a list of the available fonts as some type of collection or array. How can I do this? Click to expand... Are you talking about Windows Forms or Web Forms? Do you want to enumerate fonts on the client or on the server? \\\ Dim g As Graphics = Me.CreateGraphics() .... = FontFamily.GetFamilies(g) g.Dispose() ///
M MyndPhlyp Jul 23, 2006 #3 Nathan Sokalski said: I need to get a list of the available fonts as some type of collection or array. How can I do this? Thanks. Click to expand... InstalledFontCollection() See your installed Help for the article entitled "How to: Enumerate Installed Fonts". If you have trouble locating it, use the Index and locate "fonts" and then "enumerating installed" under that.
Nathan Sokalski said: I need to get a list of the available fonts as some type of collection or array. How can I do this? Thanks. Click to expand... InstalledFontCollection() See your installed Help for the article entitled "How to: Enumerate Installed Fonts". If you have trouble locating it, use the Index and locate "fonts" and then "enumerating installed" under that.