Retriving Data
Describes how to retrieve loaded data
Get input data table
InputTable sampleData = InputManager.Instance.GetInput("SampleData");
foreach (SampleData data in sampleData.Rows())
{
int col1 = data.COL_1;
int col2 = data.COL_2;
}Retrieve data by key
InputTable sampleData = InputManager.Instance.GetInput("SampleData");
// Example 1
List<IInputRow> finds = sampleData.FindRows(1, 3);
// Example 2
List<IInputRow> finds2 = sampleData.FindRows(2, 1, 3);Last updated