Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi IDE Line Length

In Delphi 7 IDE, do the lines need to be a given length? I see a gray line in some Delphi code I'm working with, and it looks like ever line ends right before it.

like image 306
Beans Avatar asked Nov 28 '22 18:11

Beans


2 Answers

It's called the right margin. It is intended as a guide to help you avoid writing lines that are too long and exceed your coding standards. You can switch it off from the Editor Options, as I have done here:

enter image description here

like image 110
David Heffernan Avatar answered Dec 09 '22 16:12

David Heffernan


It's just a guide to line length. Some people don't like long lines because they can be hard to read on different resolutions or when doing comparisons.

like image 27
Ray Avatar answered Dec 09 '22 16:12

Ray