Rhino.ScriptRuntime.UpdateDotQuery C# (CSharp) Method

UpdateDotQuery() public static method

public static UpdateDotQuery ( bool value, Scriptable scope ) : object
value bool
scope Scriptable
return object
		public static object UpdateDotQuery(bool value, Scriptable scope)
		{
			// Return null to continue looping
			NativeWith nw = (NativeWith)scope;
			return nw.UpdateDotQuery(value);
		}
ScriptRuntime