I've seen your note about setting the mouse cursor when over a hyperlink cell e.g:
procedure TArtMessageListForm.cxGrid1TableView1MouseMove(Sender: TObject;
Shift: TShiftState; X, Y: Integer);
var
Ht: TcxCustomGridHitTest;
begin
Ht := TcxGridSite(Sender).GridView.Viewinfo.GetHitTest(X,Y);
If (Ht is TcxGridRecordCellHitTest) and
(TcxGridRecordCellHitTest(Ht).Item.Properties is TcxHyperLinkEditProperties) then
Screen.Cursor := crHandPoint
else
Screen.Cursor := crDefault;
end;
I am using this but would also like to cause the hyperlink to change color as the mouse flies over it. I've tried various modifications of the above code but without success. How please?
Thanks.
We have closed this ticket because another page addresses its subject:
Switch the mouse pointer that hovers over cxHyperLinkEdit data cells to crHandPoint
Hello Brian.
Thank you for your message.
The simplest solution is to use custom drawing capabilities of the ExpressQuantumGrid to paint a cell under the mouse cursor. Just check whether the necessary cell is under the mouse cursor and draw the text using a different color.
Attached is an example that shows how to perform this task. Does this solution meet your requirements?
Best regards,
Ingvar.
P.S. By the way, it seems you're using an older build of our components (according to the report's Version field). Please visit our version info page, to learn about the most recent versions of our products, and obtain instructions on how to update them.
Yes, this is looking good. Now could you show me a nice way of getting the 'hand' cursor when over the hyperlink please? - Ideally only when over the text, not for the whole cell area…
Many thanks for your fast response.
Hello Brian.
Thank you for the response.
This task has already been reviewed in our Support Center. Please refer to the Mouse pointer over not editable hyperlink text, not over the whole cell report for additional information.
Hopefully, it will help you achieve the required functionality.
Best regards,
Ingvar.