Presets

Presets class

Provides shorthand commands for rapid generation and recognition of OMR forms with predefined design. This API enables form creation without needing to learn Aspose.OMR markup languages and form recognition without a pattern file. For advanced control over form design and recognition, use OmrEngine

public static class Presets

Methods

NameDescription
static CreateBubbleSheet(string, int, int, int, string, BubbleType, BubbleSize, GlobalPageSettings)Generates a simple bubble sheet with an optional title.
static CreateSurvey(string, string, GlobalPageSettings, params ChoiceBoxConfig[])Combine questions into a simple survey.
static CreateSurveyQuestion(string, params string[])Create a question with a variable number of answers. Used in !:CreateSurvey(string, GlobalPageSettings, ChoiceBoxConfig[])
static RecognizeBubbleSheet(string, int, int, int, string, BubbleType, BubbleSize, GlobalPageSettings)Recognize the bubble sheet generated with CreateBubbleSheet method. To maintain consistency in form recognition, provide the same parameters as those in the CreateBubbleSheet method.
static RecognizeSurvey(string, string, GlobalPageSettings, params ChoiceBoxConfig[])Recognize a survey generated with CreateSurvey method. To maintain consistency in form recognition, provide the same parameters as those in the CreateSurvey method.

See Also