hi
This code will help u to find all the BorderStyle Available in VS 2005.
Drag a list box(lstFontStyle) and a button( btnLoadFontStyle) from tool box
under button click write the below code.
protected void btnLoadFontStyle_Click(object sender, EventArgs e)
{
InstalledFontCollection fontList = new InstalledFontCollection();
foreach (FontFamily Family in fontList.Families)
{
lstFontStyle.Items.Add(Family.Name);
}
}
Ragards
Santosh