Home > Contents > Index >
ICS.RemoveVar
Deletes a variable.
Syntax
public void RemoveVar(String name)Parameters
name
- The name of the variable to delete.
Description
The
RemoveVar
method deletes a variable. After a variable is removed, it is no longer defined for the processing of the page and its value cannot be referenced.Example
// Create a variable named var1 ics.SetVar( "var1", "Born to be deleted." ); // This variable has grown tiresome; delete it. ics.RemoveVar( "var1" ); // Since the variable has been removed, GetVar will return null String sv = ics.GetVar( "var1" );See Also
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.