Click or drag to resize

FactSetOnDemandaddStringArrayParameters Method

Overload List
  NameDescription
Public methodCode exampleaddStringArrayParameters(DataRequest, Object)
Helper function for adding a series of parameters to a DataRequest object like a Factlet. The parameters should be formated as an array where every pair of strings represent a name-value pair
Examples
FactSetOnDemand fsod = new FactSetOnDemand();
Factlet f = new Factlet("ExtractFormulaHistory");
string[] params = new string[] { "ids", "ibm", "items", "p_price", "date", "08/10/2014" };
fsod.addStringArrayParameters(f, params);
Public methodCode exampleaddStringArrayParameters(DataRequest, String)
Helper function for adding a series of parameters to a DataRequest object like a Factlet. The parameters should be formated as an array where every pair of strings represent a name-value pair
Examples
FactSetOnDemand fsod = new FactSetOnDemand();
Factlet f = new Factlet("ExtractFormulaHistory");
string[] params = new string[] { "ids", "ibm", "items", "p_price", "date", "08/10/2014" };
fsod.addStringArrayParameters(f, params);
Top
See Also