UNPKG

@cantoo/pdf-lib

Version:

Create and modify PDF files with JavaScript

21 lines (17 loc) 538 B
import PDFDict from '../objects/PDFDict'; import PDFAcroChoice from './PDFAcroChoice'; import PDFContext from '../PDFContext'; import PDFRef from '../objects/PDFRef'; class PDFAcroListBox extends PDFAcroChoice { static fromDict = (dict: PDFDict, ref: PDFRef) => new PDFAcroListBox(dict, ref); static create = (context: PDFContext) => { const dict = context.obj({ FT: 'Ch', Kids: [], }); const ref = context.register(dict); return new PDFAcroListBox(dict, ref); }; } export default PDFAcroListBox;