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

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

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
Результат bool
        public bool FrameExists(string frameName)
        {
            return (bool) interceptor.Invoke("frameExists$", "frameExists(const QString&)", typeof(bool), typeof(string), frameName);
        }
KHTMLPart