Hi, how can I change the cursor for a table cell?
Change the cursor for a table cell?
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Change the cursor for a table cell?
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).
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).
-
- Posts: 2
- Joined: Thu Mar 08, 2018 7:22 am
Re: Change the cursor for a table cell?
Exactly what i needed
Thank you
Thank you
Code: Select all
Table.Options := Table.Options - [rvtoRowSelect];
Table.Options := Table.Options - [rvtoColSelect];