1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-11-23 21:34:53 +02:00

Update to CEF 81.2.21

This commit is contained in:
Salvador Díaz Fau
2020-04-22 13:12:46 +02:00
parent dce556683a
commit 823be24cd9
5 changed files with 18 additions and 18 deletions

View File

@@ -62,10 +62,10 @@ type
Fpage_width : integer;
Fpage_height : Integer;
Fscale_factor : integer;
Fmargin_top : double;
Fmargin_right : double;
Fmargin_bottom : double;
Fmargin_left : double;
Fmargin_top : integer;
Fmargin_right : integer;
Fmargin_bottom : integer;
Fmargin_left : integer;
Fmargin_type : TCefPdfPrintMarginType;
Fheader_footer_enabled : boolean;
Fselection_only : boolean;
@@ -79,10 +79,10 @@ type
property page_width : integer read Fpage_width write Fpage_width default 0;
property page_height : integer read Fpage_height write Fpage_height default 0;
property scale_factor : integer read Fscale_factor write Fscale_factor default 0;
property margin_top : double read Fmargin_top write Fmargin_top;
property margin_right : double read Fmargin_right write Fmargin_right;
property margin_bottom : double read Fmargin_bottom write Fmargin_bottom;
property margin_left : double read Fmargin_left write Fmargin_left;
property margin_top : integer read Fmargin_top write Fmargin_top;
property margin_right : integer read Fmargin_right write Fmargin_right;
property margin_bottom : integer read Fmargin_bottom write Fmargin_bottom;
property margin_left : integer read Fmargin_left write Fmargin_left;
property margin_type : TCefPdfPrintMarginType read Fmargin_type write Fmargin_type default PDF_PRINT_MARGIN_DEFAULT;
property header_footer_enabled : boolean read Fheader_footer_enabled write Fheader_footer_enabled default False;
property selection_only : boolean read Fselection_only write Fselection_only default False;