0

I am using Delphi XE3. Is there a way to unindent a block of codes? I check the edit menu and cannot find such an option.

Sertac Akyuz
  • 54,131
  • 4
  • 102
  • 169
alancc
  • 487
  • 2
  • 24
  • 68
  • 2
    Might I be so impertinent to suggest that you read this post https://stackoverflow.com/questions/21403628/how-can-i-search-for-delphi-documentation which will prove useful to you in the future – David Heffernan Nov 20 '18 at 11:06

1 Answers1

3

For indenting and outdenting a block, you can use the following shortcuts:

  • TAB (indent), SHIFT + TAB (outdent)
  • SHIFT + CTRL + I (indent), SHIFT + CTRL + U (outdent)
  • CTRL + K + I (indent), CTRL + K + U (outdent)

Not all versions of Delphi support all of these different options. You will, obviously, have to use ones that work for your version.

This information can be found in the documentation:

BrakNicku
  • 5,935
  • 3
  • 24
  • 38
David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490