Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C#
  4. [Solved]Getting a list of installed fonts. [modified]

[Solved]Getting a list of installed fonts. [modified]

Scheduled Pinned Locked Moved C#
question
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    Jordanwb
    wrote on last edited by
    #1

    I making a quick little program that'll let me view all the fonts installed on a given computer. Pressing the right arrow goes to the next font, pressing the left arrow goes to the previous font. So how would I go about getting a list of installed fonts at run time?

    modified on Wednesday, August 13, 2008 3:48 PM

    M 1 Reply Last reply
    0
    • J Jordanwb

      I making a quick little program that'll let me view all the fonts installed on a given computer. Pressing the right arrow goes to the next font, pressing the left arrow goes to the previous font. So how would I go about getting a list of installed fonts at run time?

      modified on Wednesday, August 13, 2008 3:48 PM

      M Offline
      M Offline
      Manas Bhardwaj
      wrote on last edited by
      #2

      List<string> LobjFontList = new List<string>();InstalledFontCollection LobjFonts = new InstalledFontCollection();foreach (FontFamily LobjFamily in LobjFonts.Families){LobjFontList.Add(LobjFamily.Name);}

      Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.

      J 1 Reply Last reply
      0
      • M Manas Bhardwaj

        List<string> LobjFontList = new List<string>();InstalledFontCollection LobjFonts = new InstalledFontCollection();foreach (FontFamily LobjFamily in LobjFonts.Families){LobjFontList.Add(LobjFamily.Name);}

        Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.

        J Offline
        J Offline
        Jordanwb
        wrote on last edited by
        #3

        Thanks.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups