You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
841 B
20 lines
841 B
//***************************************************************************
|
|
//This script tests the manipulation of context values, in the case that the
|
|
//context value is a not an array type
|
|
//***************************************************************************
|
|
var Context = new ActiveXObject("WbemScripting.SWbemNamedValueSet");
|
|
|
|
Context.Add ("n1", 327);
|
|
WScript.Echo ("The initial value of n1 is [327]:", Context("n1"));
|
|
|
|
//Verify we can report the context value
|
|
var v = Context("n1");
|
|
WScript.Echo ("By indirection n1 has value [327]:",v);
|
|
|
|
//Verify we can report the value directly
|
|
WScript.Echo ("By direct access n1 has value [327]:", Context("n1"));
|
|
|
|
//Verify we can set the value of a single named value
|
|
Context("n1") = 234;
|
|
WScript.Echo ("After direct assignment n1 has value [234]:", Context("n1"));
|
|
|