EbaseSystem.loadPropertiesFromFile

Loads a properties file from the specified full file path. Individual properties can then be extracted by referring directly to the property name.

Javascript example:

 var props = system.loadPropertiesFromFile("c:/myApp/properties/foo.properties");
 var x = props.property1;
 

returns java.util.Properties

Parameters

java.lang.String  propertiesFilePath,