Public Method Items API

questionsApp()

Obtains the instance of Questions API being used.

You would want to use this method to interact with all Questions in the assessment, for example, checking the attempted status for all Questions.

Examples

var questionsApp = itemsApp.questionsApp();
console.log(questionsApp);

// Get all attempted questions in the assessment
questionsApp.attemptedQuestions();

Arguments

None.

Return value

object

Returns the instance of the questionsApp for the current Activity.

Related articles

Was this article helpful?