-
Hi, I'm using CefSharp 109.1.110, under Windows 10 (developer laptop) and (Windows server 2012 R2, Windows 2019, Windows server 2016 : clients servers) Compilation in x86 mode, and making a .Net Framework 4.6.1 WinForm activeX for old Visual FoxPro 9 applications. I encounter a strange behaviour using Pdf print settings. If i omit Landscape in the settings, or set it to false, then the generated PDF is in landsape orientation. This occurs with Cefsharp Minimal example repository, 109.1.110 too. I may do something wrong. Note that clients technical recommendations does not allow me to us more recent versions, because 109.1.110 is the last version to support Windows 7 / 8 / 8.1 and servers equivalents.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
If the problem reproduces in the current supported version then it's probably worth stepping through with the debugger to confirm the correct value is being passed through. On the surface it looks like an upstream issue in CEF.
Unfortunately version 109 is no longer supported upstream so we won't be getting any more fixes. |
Beta Was this translation helpful? Give feedback.
-
Hi @amaitland , back to work on CefSharp version 114.2.100 here is the code i used :
|
Beta Was this translation helpful? Give feedback.
CefSharp
does little more than pass the values to the underlyingCEF method
. So I suspect this is a problem in CEFCefSharp/CefSharp.Core.Runtime/Internals/CefBrowserHostWrapper.cpp
Line 90 in 3a3aed6
https://github.com/chromiumembedded/cef/blob/c83b3cda24e2960141dc13e1f089edb93c939add/include/internal/cef_types.h#L2505
If the problem reproduces in the current supported version then it's probably worth stepping through with the debugger to confirm the correct value is being passed through. On the surface it looks like an upstream issue in CEF.