survey-core
Version:
A framework-independent core of the SurveyJS Form Library that works with rendering packages. Use it to integrate dynamic, interactive JSON-based forms and surveys into your app, collect user responses, and send them to your own database.
25 lines (24 loc) • 884 B
TypeScript
import { QuestionNonValue } from "./questionnonvalue";
/**
* A class that describes the HTML question type. Unlike other question types, HTML cannot have a title or value.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-html/ (linkStyle))
*/
export declare class QuestionHtmlModel extends QuestionNonValue {
ignoreHtmlProgressing: boolean;
getType(): string;
get isCompositeQuestion(): boolean;
getProcessedText(text: string): string;
/**
* HTML markup to display.
*
* [View Demo](https://surveyjs.io/form-library/examples/add-html-form-field/ (linkStyle))
*
* > If you get the markup from a third party, ensure that it does not contain malicious code.
*/
html: string;
get processedHtml(): string;
private processHtml;
get isNewA11yStructure(): boolean;
get renderCssRoot(): string;
}