Hi Praveen,
I have observed your comments and request you to please share a working sample project (not complete on but reproducing the issue) in which you are applying locks and creating a unlocked slide using Ctrl+V in a new presentation instance. Please also share the created presentation as well. I will investigate this on my end to help you further.
Many Thanks,
Hi Praveen,
We bought Aspose.Net primarily for its locking feature.
We cannot make a presentation ‘read-only’ as it prompts for password/read-only confirmation during open, which is against our requirement specification.
In fact Aspose.Net locking is satisfactory except the following bug. So we expect this to get fixed.
1. An Aspose.Net locked slide:
See the first attachment 1.png
2. Copying text from a text editor:
See the second attachment 2.png
3. Pasting text onto Aspose.Net locked slide
See the third attachment 3.png
4. Pasted:
See the fourth attachment 4.png
5. NOW, Locking lost!
See the fifth attachment 5.png
Requesting a fix for this.
Thanking you,
Praveen
Hi Praveeen,
I have observed the images shared by you and have tried modifying the locked presentation by copying text from text editor and directly pasting that on slide. There is no issue observed on my end and the shapes remain locked. I have used Aspose.Slides for .NET 15.4.0 on my end. For your kind reference, I have attached the source presentation as well as updated generated presentation. Can you please try opening the output presentation on your end. If you are still able to reproduce the issue then please share the complete PowerPoint version number used on your end.
Many Thanks,
Hello Mudassir,
yes we are still able to reproduce the issue ,
Hi Praveen,
Thank you for sharing the additional details with us. I have still not been able to reproduce this issue in PowerPoint 2010 version on my end. It seems to be an issue and I have created an issue with ID SLIDESNET-36497 to further investigate and resolve the issue. This thread has been linked with the issue so that you may be automatically notified once the issue will be resolved.
We are sorry for your inconvenience,
Hello
Hi Jinu,
what about the this issue
Hi Jinu,
Please be kind enough to precisely tell me when will this issue be resolved?
Hi Jinu,
Hi Praveen,
I have discussed the issues status with our product team. At the moment the issue is unresolved. However, we have scheduled the issue for investigation during Week 34/2015. We will be able to share the further feedback with you in this regard after investigation will be completed by our product team. We will really appreciate your patience in this regard.
Many Thanks,
The issues you have found earlier (filed as SLIDESNET-36497) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.
Hi Praveen,
IShape shape;int shapesCount = slide.Shapes.Count;for (int count = 0; count < shapesCount; count++){shape = slide.Shapes[count];if (shape is IAutoShape){//Type casting to Auto shape and getting auto shape lockIAutoShape Ashp = shape as IAutoShape;IAutoShapeLock aShapeLock = Ashp.ShapeLock;aShapeLock.PositionLocked = true;aShapeLock.SelectLocked = true;aShapeLock.SizeLocked = true;//Workaround for text locking: create a transparent rectangle shape, overlay it in front of the text box and lock itIAutoShape transpRect = slide.Shapes.AddAutoShape(ShapeType.Rectangle, Ashp.X - 5, Ashp.Y - 5, Ashp.Width + 10, Ashp.Height +10);transpRect.FillFormat.FillType = FillType.Solid;transpRect.FillFormat.SolidFillColor.Color = Color.Transparent;transpRect.LineFormat.FillFormat.FillType = FillType.NoFill;transpRect.ShapeLock.PositionLocked = true;transpRect.ShapeLock.SelectLocked = true;transpRect.ShapeLock.SizeLocked = true;//}...}