Go to: Synopsis. Return value. MEL examples.

Synopsis

containerRemoveBindingSet

This script removes a binding set from the template associated with a container.

Return value

None

Arguments

Variable Name Variable Type Description
$container string , the container to use, or "" to use selected
$bindingSet string , the bindingSet to remove, or "" have default bindingSet determined automatically

MEL examples

      // Remove binding set "MyBindings".  
        containerRemoveBindingSet(myContainer, "MyBindings");

        // Remove default binding set (since binding set is not
  // specified, the default binding set will be used)
        containerRemoveBindingSet(myContainer, "")