UNPKG

asposewordscloud

Version:
34 lines (33 loc) 1.03 kB
import { AttributeInfo } from '../internal/attributeInfo'; import { FormField } from './formField'; export declare const importsMapFormFieldCheckbox: { FormField: typeof FormField; }; /** * FormField checkbox element. */ export declare class FormFieldCheckbox extends FormField { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets a value indicating whether the size of the textbox is automatic or specified explicitly. */ isCheckBoxExactSize: boolean; /** * Gets or sets the size of the checkbox in points. Has effect only when IsCheckBoxExactSize is true. */ checkBoxSize: number; /** * Gets or sets the checked status of the check box form field. */ checked: boolean; constructor(init?: Partial<FormFieldCheckbox>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }