@eclipse-scout/core
Version:
Eclipse Scout runtime
17 lines • 504 B
TypeScript
import { ValueFieldModel } from '../../../index';
export interface HtmlFieldModel extends ValueFieldModel<string> {
/**
* Configures whether scrollbars should be shown if the content is bigger than the available size.
*
* Default is false.
*/
scrollBarEnabled?: boolean;
/**
* Configures whether the text should be selectable.
*
* Default is true.
*/
selectable?: boolean;
scrollToAnchor?: string;
}
//# sourceMappingURL=HtmlFieldModel.d.ts.map