Kimono.KHTMLPart.SetZoomFactor C# (CSharp) Method

SetZoomFactor() public method

Sets the Zoom factor. The value is given in percent, larger values mean a generally larger font and larger page contents. 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 zooming and show the page with the sizes determined via the given lengths in the stylesheets.
public SetZoomFactor ( int percent ) : void
percent int
return void
        public void SetZoomFactor(int percent)
        {
            interceptor.Invoke("setZoomFactor$", "setZoomFactor(int)", typeof(void), typeof(int), percent);
        }
KHTMLPart