Could a not-standard order of the properties cause any problem?
For example, the IDE stores a TButton
component in the DFM file as follows:
object Button1: TButton
Left = 288
Top = 160
Width = 75
Height = 25
Caption = 'Button1'
TabOrder = 0
OnClick = Button1Click
end
If I manually change the order of the properties, could this cause any problem?
object Button1: TButton
OnClick = Button1Click
Left = 288
Top = 160
Width = 75
Height = 25
Caption = 'Button1'
TabOrder = 0
end