We\'ve noticed that when checking in updates, our .DFM
files have added ExplicitWidth
and ExplicitHeight
properties - but we don\'t kn
From Googling....
Original article can be found here.
The Explicit properties remember the previous bounds of a control before the Align or Anchor properties are changed from their defaults.
The only time the Explicit properties are not written is when the Align property is set back to its default value of alNone.
This is when the Explicit properties are actually used by the control to reset its bounds to what it was previously.
Delphi adds value of published properties to DFM file only when its value different from default.
For example:
property ExplicitWidth: Integer read FExplicitWidth write FExplicitWidth default 1;
If ExplicitWidth value is not 1 then it will be written to the DFM. When the "default" is not defined then any value will be written to the DFM.
TcxSplitter is not standard Delphi component, you'd better ask its author about the purpose of the properties.
With DDevExtensions you can disable storing these properties in the dfm:
http://andy.jgknet.de/blog/?page_id=10
Adds Explicit* property remover to keep DFM files compatible to older Delphi versions