JavaScript Reference/Javascript Methods/queryCommandValue
"queryCommandValue()" Example
<html>
<body>
<script language="JavaScript">
function function1() {
var myText = document.body.createTextRange();
var m = myText.queryCommandValue("delete");
alert("The command value for this object is: "+"""+m+""");
}
</script>
<input type="button" value="Delete Command Value" onclick="function1();">
</body>
</html>
"queryCommandValue()" is applied to
Names noted with an asterisk (*) are JavaScript properties only.
+----------------+--------------------------------------------------------------+
| Applied_To |controlRange* document |
| |TextRange |
+----------------+--------------------------------------------------------------+
"queryCommandValue()" Syntax, Parameters and Note
Note:
This method returns the value of the specified command.
Syntax:
controlRangeName.queryCommandValue(param1)
objectName.queryCommandValue(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.