Tools
Sign in
Login
Forum
Migration 5.1 to 6.1 and PdfRenderConfiguration
Forum
>
Application Architecture & Design
>
Migration 5.1 to 6.1 and PdfRenderConfiguration
Giorgio Luparia
posted
on July 22, 2014
at 6:10 PM
Giorgio Luparia
posted
on July 22, 2014
at 6:10 PM
When upgrading a 5.1 solution to 6.1 a previously working Script shows some validation errors due to missing properties for the Dataclass:
1
PdfRenderConfiguration $configuration;
2
// ...
3
If $configuration.encrypted Then
4
$configuration.allowAssembly := false;
5
$configuration.allowCopy := true;
6
$configuration.allowDegradedPrinting := true;
7
$configuration.allowFillIn := true;
8
$configuration.allowModifyAnnotations := false;
9
$configuration.allowModifyContents := true;
10
$configuration.allowPrinting := true;
11
$configuration.allowScreenReaders := true;
12
$configuration.ownerPassword := TOSTRING(RANDOM());
13
End
Where can I find documentation on what these properties controlled, and how to refactor the same functionality?
Thanks
Giorgio
n/A
replied
on July 31, 2014
at 8:52 AM
n/A
replied
on July 31, 2014
at 8:52 AM
Hi Giorgio,
that functionality was introduced in 5.1.1.p and never ported forward to other Appway versions as there was no client interest in it. Now that this needs is existing we decided to port this forward to Appway 6.1 and all the future releases. It will be included in the next Appway release.
Giorgio Luparia
replied
on July 31, 2014
at 11:14 PM
Giorgio Luparia
replied
on July 31, 2014
at 11:14 PM
Thank you Mauro
Giorgio
Emilie Boillat
replied
on August 21, 2014
at 3:59 PM
Emilie Boillat
replied
on August 21, 2014
at 3:59 PM
Hi Giorgio,
The PdfRenderConfiguration properties you mention have been re-introduced, starting with Appway 6.1.3. For details, see
Patch release: Appway 6.1.3
.
Best,
Emilie
Please
sign in
to add a reply
About this site
|
Terms of use
|
Privacy statement
|
Contact us
© 2025 Appway AG. All Rights Reserved.
Where can I find documentation on what these properties controlled, and how to refactor the same functionality?
Thanks
Giorgio