| Issue 5: | Still able to resize ObjectHandle event after allowVResize and allowHResize set to false | |
| 3 people starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. Set allowHResize and allowVResize to false 2. Try to resize the ObjectHandle 3. What is the expected output? What do you see instead? I am still able to resize the Object handle. I should not be able to resize it. What version of the product are you using? On what operating system? Version: ObjectHandles-1.0.0015 OS:Windows XP SP 2 Please provide any additional information below.
Jul 28, 2009
Note that allowHResive and allowVResize only affect the handles if they are set before the component is initialized, you can't turn them on and off at will. Would be very useful if you could do this though.
Oct 22, 2009
hi i want to resize image with equal height and width of original image size... can i do it in object handler.. anyone help me....
Dec 22, 2009
(No comment was entered for this change.)
Labels:
ObjectHandlesV1
|
You can resize an ObjectHandles with keyboard but object does not allow resizing, to fix that add a verification at handleUpPress, handleDownPress, handleLeftPress and handleRightPress like this : if (!(shiftKeyDown && !allowVResize)) { // or allowHResize for left and right // do code }