Thank you for your reply.
I found a solution with Viewport.ScreenToRoomPoint:
I found a solution with Viewport.ScreenToRoomPoint:
QuotePoint* pt = Screen.Viewport.ScreenToRoomPoint(mouse.x, mouse.y, true);
if (pt != null) {
DoThings(pt.x, pt.y);
}