Hi Rupert,
Looking at the source file used for the property loader step type, here is what each of these mean:
PropertyName: Variable/Property to be loaded
PropertyType: The location of the property to load. This is an enumerated value with the following values (from TSDBCommon.h):
PropertyType_Step = 0,
PropertyType_Local = 1,
PropertyType_FileGlobal = 2,
PropertyType_StationGlobal = 3,
PropertyType_Other = 4
DataType: The datatype of the value to be loaded. This is an enumerated value with the corresponding values (from tsapicvi.h):
TS_PropValType_Container = 0,
TS_PropValType_String = 1,
TS_PropValType_Boolean = 2,
TS_PropValType_Number = 3,
TS_PropValType_NamedType = 4,
TS_PropValType_Refe
rence = 5
ColumnName: This is required in order to specify column to step property mapping. TestStand uses this to determine the column in the file in which the property is located.
IsArray: True if the value is an array (i.e. Locals.MyArray[x]), false otherwise.
Hope this helps!
Bob