SetProperty() public method

Set the property to a format.
public SetProperty ( String name, AnalystFileFormat format ) : void
name String The name of the property.
format AnalystFileFormat The value of the property.
return void
 /// <summary>
 ///     Construct an analyst script.
 /// </summary>
 public AnalystScript()
 {
     _normalize = new AnalystNormalize(this);
     _segregate = new AnalystSegregate();
     _generated = new List<String>();
     _tasks = new Dictionary<String, AnalystTask>();
     _properties = new ScriptProperties();
     _properties.SetProperty(ScriptProperties.SetupConfigCSVFormat,
                             AnalystFileFormat.DecpntComma);
     _properties.SetProperty(
         ScriptProperties.SetupConfigMaxClassCount,
         DefaultMaxClass);
     _properties
         .SetProperty(ScriptProperties.SetupConfigAllowedClasses,
                      "integer,string");
 }