Is it possible to make a compiler directive for the .dfm properties introduced on Delphi 11 like
{$IFDEF CompilerVersion > 34.0}
PixelsPerInch = 96
{$ENDIF}
So other developers that use 10.4.2 or lower are able to use the same unit without having to ignore the error and/or then commiting the form without that attribute?
Tried doing it that exact way listed above but it doesn't compile, it throws a Linker error on the line of the conditional.
Thanks in advance!