Click or drag to resize
IUserAccessiableGetTableFromStore Method (String)
Will get a name of a subject store and return the table object. in JS should be inserted into a ‘var’ type.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
ITable GetTableFromStore(
	string inStoreName
)

Parameters

inStoreName
Type: SystemString
Name of the subject store

Return Value

Type: ITable
Examples
If I wish to refer to a specific Row and Column in my Subject store I can use this function like this: GetTableFromStore(“my_store123”)[0][1] This will return Column 0 and row 1 (column 1 and row 2)
See Also