$getProperty

Returns the value of the named protected property of the current branch.
Syntax
    $getProperty{property_name}{default_value}
DocumentationReturns the value of the named protected property of the current branch:

    Parameters:
      property_name, the name of the protected property whos value is requested.
      default_value, the value to be returned in case the named protected property does not exist on the current branch.
    Returns:
      the requested value of the named protected property.
    Throws:
      java.lang.IllegalArgumentException if the named property does not exist on the current branch and no 'default_value' was specified.
Examples
Get the value of the protected property named 'some_property':

    $set{name}{some_property}
    $set{value}{no_value}

    $if{$existsProperty{$get{name}}}
      {
      $set{value}{$getProperty{$get{name}}}
      }
The following expression is equivalent:

    $set{value}{$getProperty{some_property}{no_value}}
The following expression could cause an exception to be thrown if the property named 'some_property' does not exist on the current branch:

    $set{value}{$getProperty{some_property}}
GroupBranch
Minimum required transaction-mode:READ
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters1
Maximum parameters 2