Kimono.KHTMLPart.FindFrameParent C# (CSharp) Method

FindFrameParent() public method

Recursively finds the part containing the frame with name f and checks if it is accessible by callingPart Returns null if no suitable frame can't be found. Returns parent part if a suitable frame was found and frame info in childFrame
public FindFrameParent ( KParts callingPart, string f ) : KHTMLPart
callingPart KParts
f string
return KHTMLPart
        public KHTMLPart FindFrameParent(KParts.ReadOnlyPart callingPart, string f)
        {
            return (KHTMLPart) interceptor.Invoke("findFrameParent#$", "findFrameParent(KParts::ReadOnlyPart*, const QString&)", typeof(KHTMLPart), typeof(KParts.ReadOnlyPart), callingPart, typeof(string), f);
        }
KHTMLPart