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.
Asked
Active
Viewed 508 times
1 Answers
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
-
4this 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