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:
This property is only available for IE 5 and later on Windows 32 and 64-bit platforms.
See Also: