Kimono.KHTMLPart.GotoAnchor C# (CSharp) Метод

GotoAnchor() публичный Метод

Finds the anchor named name. If the anchor is found, the widget scrolls to the closest position. Returns if the anchor has been found.
public GotoAnchor ( string name ) : bool
name string
Результат bool
        public bool GotoAnchor(string name)
        {
            return (bool) interceptor.Invoke("gotoAnchor$", "gotoAnchor(const QString&)", typeof(bool), typeof(string), name);
        }
KHTMLPart