Esempio n. 1
0
        public bool IsCommandIndeterminate(string name)
        {
            IHTMLDocument2 doc = (IHTMLDocument2)Browser.Document;

            if (doc == null)
            {
                return(false);
            }

            return(doc.queryCommandIndeterm(name));
        }
Esempio n. 2
0
 public bool queryCommandIndeterm(string cmdID)
 {
     return(_innerDoc2.queryCommandIndeterm(cmdID));
 }