Encog.App.Analyst.Script.Prop.ScriptProperties.GetPropertyFormat C# (CSharp) Method

GetPropertyFormat() public method

Get a property as a format.
public GetPropertyFormat ( String name ) : AnalystFileFormat
name String The property name.
return AnalystFileFormat
        public AnalystFileFormat GetPropertyFormat(String name)
        {
            String v = _data[name];
            return ConvertStringConst.String2AnalystFileFormat(v);
        }