asposepdfcloud
Version:
Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to diff
34 lines • 906 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComboBoxField = void 0;
const choiceField_1 = require("./choiceField");
class ComboBoxField extends choiceField_1.ChoiceField {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(ComboBoxField.attributeTypeMap);
}
}
exports.ComboBoxField = ComboBoxField;
ComboBoxField.discriminator = undefined;
ComboBoxField.attributeTypeMap = [
{
"name": "options",
"baseName": "Options",
"type": "Array<Option>"
},
{
"name": "activeState",
"baseName": "ActiveState",
"type": "string"
},
{
"name": "editable",
"baseName": "Editable",
"type": "boolean"
},
{
"name": "spellCheck",
"baseName": "SpellCheck",
"type": "boolean"
}
];
//# sourceMappingURL=comboBoxField.js.map
;