font script
-
all font have script with any language inclue in this font how can get the script in some font with c# ?? Palestine
-
all font have script with any language inclue in this font how can get the script in some font with c# ?? Palestine
:wtf: Could you please rephrase this in something closer to proper english? Regards, mav -- Black holes are the places where god divided by 0...
-
:wtf: Could you please rephrase this in something closer to proper english? Regards, mav -- Black holes are the places where god divided by 0...
when u open notepate and go to select font from menu u can see (Script) and comboBox withh all language support in this font ?? i want to make comboBox that have a list with script .. as in the NotePad how can get this Script with C# Palestine
-
:wtf: Could you please rephrase this in something closer to proper english? Regards, mav -- Black holes are the places where god divided by 0...
see this lik http://imgsrv.worldstart.com/ct-images/notepad-font.jpg Palestine
-
when u open notepate and go to select font from menu u can see (Script) and comboBox withh all language support in this font ?? i want to make comboBox that have a list with script .. as in the NotePad how can get this Script with C# Palestine
You want a font combo box. I'm sure there are some on this site, if you do a search. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
see this lik http://imgsrv.worldstart.com/ct-images/notepad-font.jpg Palestine
-
You can use FontDialog FontDialog dlg = new FontDialog(); if (dlg.ShowDialog()==DialogResult.OK) { selectedFont = dlg.Font; }
i dont want to use FontDialog i want to make one like it ... Palestine
-
when u open notepate and go to select font from menu u can see (Script) and comboBox withh all language support in this font ?? i want to make comboBox that have a list with script .. as in the NotePad how can get this Script with C# Palestine
Ok, now I think I see what you mean. I've never bothered to look at the "Script" combobox in the FontDialog, but I think the only effect of selecting a different value from the combobox is to show a different set of characters in the preview window. Unicode charsets contain ranges of special characters (for example, Greek, Kyrillic (sp?) or Hebrew characters) and I think the "Script" refers to one of these groups. But I don't have an idea if you can get a list of these groups with .NET, sorry... Regards, mav -- Black holes are the places where god divided by 0...