Page 1 of 1

Change the cursor for a table cell?

Posted: Thu Mar 08, 2018 7:26 am
by SmallDonkey
Hi, how can I change the cursor for a table cell? :roll: :roll: :roll:
08-03-2018 10-17-42.jpg
08-03-2018 10-17-42.jpg (85.56 KiB) Viewed 11202 times

Re: Change the cursor for a table cell?

Posted: Thu Mar 08, 2018 5:45 pm
by Sergey Tkachenko
This cursor selects a row.
If you want to hide it, exclude rvtoRowSelect from table.Options (the same for columns and rvtoColSelect).
In the current version of TRichView, these cursors are hard-coded (read from resources).

Re: Change the cursor for a table cell?

Posted: Fri Mar 09, 2018 5:18 am
by SmallDonkey
Exactly what i needed :D :D :D
 
Thank you

Code: Select all

Table.Options := Table.Options - [rvtoRowSelect];
Table.Options := Table.Options - [rvtoColSelect];