Kimono.KHTMLPart.SetFixedFont C# (CSharp) Method

SetFixedFont() public method

Sets the fixed font style. name="name" The font name to use for fixed text, e.g. the <pre> tag.
public SetFixedFont ( string name ) : void
name string
return void
        public void SetFixedFont(string name)
        {
            interceptor.Invoke("setFixedFont$", "setFixedFont(const QString&)", typeof(void), typeof(string), name);
        }
KHTMLPart