- Cataloghi: qualita di stampa e margini

This commit is contained in:
Surya Paolo
2024-11-22 20:23:37 +01:00
parent 5cd9bd40f6
commit 6a6c15b62c
24 changed files with 1031 additions and 530 deletions

View File

@@ -690,7 +690,7 @@ export interface ISize {
}
export interface IFont {
name?: string
size?: number
size?: string
}
export interface IBorder {
@@ -717,6 +717,17 @@ export interface IDimensioni {
margini?: IBorder
padding?: IBorder
imgsfondo?: IImg
text_html?: IText
}
export interface IAreaDiStampa {
margini?: IBorder
unit: string
format: number[]
orientation: string
compress: boolean
scale: number
scalecanvas: number
}
export interface IElementiPagina {
@@ -726,6 +737,7 @@ export interface IElementiPagina {
export interface IText {
contenuto?: string
maxlength?: number
font?: IFont
}
export interface IElementiScheda {
@@ -743,6 +755,7 @@ export interface IMyScheda {
line_height?: number
numschede_perRiga?: number
numschede_perCol?: number
show_separatore: boolean
testo_right?: IText
testo_bottom?: IText
posiz_text?: number
@@ -779,16 +792,10 @@ export interface ICatalogo {
pdf_filename?: string
printable?: boolean
first_page_img?: string
first_page_html?: string
first_page_height?: number
first_page_width?: number
last_page_img?: string
last_page_html?: string
last_page_height?: number
last_page_width?: number
first_page?: IDimensioni
last_page?: IDimensioni
areadistampa?: IAreaDiStampa
imgsfondo_def?: IImg
dimensioni_def?: IElementiPagina
arrSchede?: ISchedaSingola[]