How to automatically arrange code structure?

I noticed that the components have a uniform, neat and well-ordered code structure. Was it automatically organized or manually?

Is there any way to do this automatically? How is code completion in Delphi?

I am using Delphi 7, 2009, 2010 XE

+4
source share
1 answer

The “code structure” you observe is usually based on the Delphi-style Language Guide . Alternatively, you can use the delphi code formatter to get similar results. Newer versions of delphi include a formatting source built into the development environment.

+9
source

Source: https://habr.com/ru/post/1401108/


All Articles