E
Elmo Watson
I've got the following code that iterates the built-in fonts, and adds them
to a combobox:
Dim ff As FontFamily
For Each ff In System.Drawing.FontFamily.Families
cboFonts.Items.Add(ff.Name)
Next
I've also tried it using:
Dim installedFonts As InstalledFontCollection = New
InstalledFontCollection()
For Each family In installedFonts.Families
What I need to do is get the Font 'information', based on the selected Item
in that combobox.
What I mean by information, is the information that is at the top of the
page/form, when you double-click on any font -
TypeFace name, file size, version, actual file name, opentype or truetype,
copyright info, etc
Can anyone help me/direct me to a code sample, etc, on this?
to a combobox:
Dim ff As FontFamily
For Each ff In System.Drawing.FontFamily.Families
cboFonts.Items.Add(ff.Name)
Next
I've also tried it using:
Dim installedFonts As InstalledFontCollection = New
InstalledFontCollection()
For Each family In installedFonts.Families
What I need to do is get the Font 'information', based on the selected Item
in that combobox.
What I mean by information, is the information that is at the top of the
page/form, when you double-click on any font -
TypeFace name, file size, version, actual file name, opentype or truetype,
copyright info, etc
Can anyone help me/direct me to a code sample, etc, on this?