JavaScript Reference/Javascript Methods/queryCommandIndeterm

Материал из Web эксперт
Перейти к: навигация, поиск

"queryCommandIndeterm()" Example

   <source lang="javascript">
   

<html> <body> <script language="JavaScript"> function function2() {

   var myText = document.body.createTextRange();
   var m = myText.queryCommandIndeterm("delete");
   if (m == false) {
       alert("Command is NOT indeterminate");
   } 

} </script> <input type="button"

      value="Click to check the Delete command status" 
      onclick="function2();">

</body> </html>


     </source>
   
  


"queryCommandIndeterm()" is applied to

   <source lang="javascript">

Names noted with an asterisk (*) are JavaScript properties only. +----------------+--------------------------------------------------------------+ | Applied_To |controlRange* document | | |TextRange | +----------------+--------------------------------------------------------------+

     </source>
   
  


"queryCommandIndeterm()" Syntax, Parameters and Note

   <source lang="javascript">

Note: Has the command indeterminated (it cannot be accessed). Returns true or false.

Syntax:

controlRangeName.queryCommandIndeterm(param1) objectName.queryCommandIndeterm(param1) Parameters:

   param1   Required; the name of the command. 
                      For a complete list of commands, go to 
                      http://msdn.microsoft.ru/workshop/author/dhtml/reference/commandids.asp.
   
     
     </source>