Represents an array of custom fonts that will be embedded into the document.
This sample illustrates how to setup the FlexGridPdfConverter to use two custom fonts, Cuprum-Bold.ttf and Cuprum-Regular.ttf. The first one is applied to the header cells only, while the second one is applied to all the remaining cells.
wijmo.grid.pdf.FlexGridPdfConverter.export(flex, fileName, {
embeddedFonts: [{
source: 'resources/ttf/Cuprum-Bold.ttf',
name: 'cuprum',
style: 'normal',
weight: 'bold'
}, {
source: 'resources/ttf/Cuprum-Regular.ttf',
name: 'cuprum',
style: 'normal',
weight: 'normal'
}],
styles: {
cellStyle: {
font: {
family: 'cuprum'
}
},
headerCellStyle: {
font: {
weight: 'bold'
}
}
}
});Indicates whether star-sized columns widths should be recalculated against the PDF page width instead of using the grid's width.
Indicates whether merged values should be repeated across pages when the merged range is split on multiple pages.
Represents the settings used by the draw and drawToPosition methods.