Note position get
Hi,
I have created notes using ProDtlNoteCreate().
How to retrieve the x and y co-ordinates of the notes created ?
Thanks and regards,
Sekar
Hi,
I have created notes using ProDtlNoteCreate().
How to retrieve the x and y co-ordinates of the notes created ?
Thanks and regards,
Sekar
I guess that the issue is with the null argument in ProDtlattachGet. Arguments 2-5 of ProDtlattachGet function are all output arguments and therefore they can not be NULL. They may get a NULL value after the function is called but the arguments need to be declared. It is not necessary to initialize output arguments.
Try
ProDtlattachType type;
ProVector test_loc;
ProSelection attach_point;
ProView noteView;
status = ProDtlattachGet(attachment, &type, ¬eView, test_loc, &attach_point);
After that check the values of test_loc.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.