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 • 909 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListBoxField = void 0;
const choiceField_1 = require("./choiceField");
class ListBoxField extends choiceField_1.ChoiceField {
static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(ListBoxField.attributeTypeMap);
}
}
exports.ListBoxField = ListBoxField;
ListBoxField.discriminator = undefined;
ListBoxField.attributeTypeMap = [
{
"name": "options",
"baseName": "Options",
"type": "Array<Option>"
},
{
"name": "activeState",
"baseName": "ActiveState",
"type": "string"
},
{
"name": "topIndex",
"baseName": "TopIndex",
"type": "number"
},
{
"name": "selectedItems",
"baseName": "SelectedItems",
"type": "Array<number>"
}
];
//# sourceMappingURL=listBoxField.js.map
;