3

Is it possible to select a column text area in a TadvMemo component? Like selecting text in Delphi IDE holding the left mouse button and the ALT-key.

user1374768
  • 288
  • 2
  • 11

1 Answers1

3

You can switch to the block selection mode by setting the SelectionMode property to smBlock.

AdvMemo1.SelectionMode := smBlock;
TLama
  • 75,147
  • 17
  • 214
  • 392
  • 4
    this feature was introduced in TAdvMemo v.3.0.0.0 (TMS Component Pack 6.4.0.0). You can specify selection by using `SelStartX`/`SelStartY` and `SelEndX`/`SelEndY` properties – teran Jun 05 '12 at 12:49