Kimono.KHTMLPart.SetFontScaleFactor C# (CSharp) Method

SetFontScaleFactor() public method

Sets the scale factor to be applied to fonts. The value is given in percent, larger values mean generally larger fonts. The given value should be in the range of 20..300, values outside that range are not guaranteed to work. A value of 100 will disable all scaling of font sizes and show the page with the sizes determined via the given lengths in the stylesheets.
public SetFontScaleFactor ( int percent ) : void
percent int
return void
        public void SetFontScaleFactor(int percent)
        {
            interceptor.Invoke("setFontScaleFactor$", "setFontScaleFactor(int)", typeof(void), typeof(int), percent);
        }
KHTMLPart