StudentLessonActs.LessonPath Method

CSAL Mongo

StudentLessonActs LessonPath Method CSAL Mongo Access Library
String representation of the path taken by the lesson attempt recorded by Turns from index start to index end

Namespace: CSALMongo.Model
Assembly: CSALMongo (in CSALMongo.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

public string LessonPath(
	int start,
	int end = -1
)
public string LessonPath(
	int start,
	int end = -1
)
Public Function LessonPath ( 
	start As Integer,
	Optional end As Integer = -1
) As String
Public Function LessonPath ( 
	start As Integer,
	Optional end As Integer = -1
) As String
public:
String^ LessonPath(
	int start, 
	int end = -1
)
public:
String^ LessonPath(
	int start, 
	int end = -1
)

Parameters

start
Type: OnlineSystem Int32
Index where checking begins
end (Optional)
Type: OnlineSystem Int32
Last index checked - if less than 0, then index is assumed to be last in list

Return Value

Type: OnlineString
A string representing the lesson path. Each character in the string is a path change: E=Easy, M=Medium, and H=Hard. All lessons are assumed to be begin in M
See Also