Show Navigation ComponentPrevious TopicNext Topic

FontSmoothing Property (.NET)

 

Type: Boolean

 

Returns True if the user has checked the Smooth Edges of Screen Fonts option under Control Panel Display options. This option is often set by users to make screen fonts more readable. You may want to use this property in conjunction with the ColorDepth and screen size properties.

 

Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.

 

C# Example:

<%

ExtendedOptions options = new ExtendedOptions();

options.AddProperties("FontSmoothing");

ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);

%>

<html>

FontSmoothing: <% Response.Write(extBrow.FontSmoothing); %>

</html>

 

Special notes for this property:

 

See Also:

TextSize Property (.NET)

FontsInstalled Property (.NET)