Kimono.KHTMLPart.FrameExists C# (CSharp) Method

FrameExists() public method

Returns whether a frame with the specified name is exists or not. In contrast to the findFrame method this one also returns true if the frame is defined but no displaying component has been found/loaded, yet.
public FrameExists ( string frameName ) : bool
frameName string
return bool
        public bool FrameExists(string frameName)
        {
            return (bool) interceptor.Invoke("frameExists$", "frameExists(const QString&)", typeof(bool), typeof(string), frameName);
        }
KHTMLPart