List of installed fonts ?
How to get the list of installed fonts corresponding to any perticular charactor set? eg. if I want to get Japanese supporting font list (corresponding to char set Shift_JIS), how to do it?
please guide
Answers (1)
0
ok, I just throught there might have been a If (control is not checkbox). An else statement it will be.
thanks
0
foreach (Control control in Controls)
{
if (control is CheckBox)
{
// you know code here for control which is checkbox
}
else
{
// you know code here for control which is not checkbox
}
}