Change the cursor for a table cell?

General TRichView support forum. Please post your questions here
Post Reply
SmallDonkey
Posts: 2
Joined: Thu Mar 08, 2018 7:22 am

Change the cursor for a table cell?

Post 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 11217 times
Sergey Tkachenko
Site Admin
Posts: 17253
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Re: Change the cursor for a table cell?

Post 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).
SmallDonkey
Posts: 2
Joined: Thu Mar 08, 2018 7:22 am

Re: Change the cursor for a table cell?

Post by SmallDonkey »

Exactly what i needed :D :D :D
 
Thank you

Code: Select all

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