I am making use of RAP 4.4's new ClientCanvas to capture (for example) a customer signature.
ClientDrawListener cltcanvDrawLsnr = new ClientDrawListener() { @Override public void receivedDrawing() { System.out.println("cltcanvDrawLsnr#receivedDrawing"); } };
The listener is correctly triggered, but I see no API to get details of what the user drew onto the ClientCanvas... how can I do this to capture the drawing either as a vector (points array) or a bitmap?