Locks this AnnObject with the specified password.
public virtual void Lock(string password)
Public Overridable Sub Lock( _ByVal password As String _)
public virtual void Lock(string password)
-(void) lock:(NSString*)password;public void lock(String password)function Leadtools.Annotations.Core.AnnObject.Lock(password)
password
String containing the password used to lock the annotation object.
Only unlocked objects can be locked. If an object is already locked, it will stay locked with its original password. You must pass the same password to Unlock to unlock this AnnObject.
If this method succeeds, password will be stored inside the object and can be retrieved with the Password property.
An object must be unlocked in order to change that object in automated mode.
For more information, refer to Implementing Annotation Security.
using Leadtools.Annotations.Automation;using Leadtools.Annotations.Core;using Leadtools.Codecs;using Leadtools.Annotations.WinForms;public void AnnObject_Lock(){double inch = 720.0;// Get the containerAnnContainer container = _automation.Container;// Add the lock picture to the container resources// Create a new instance of AnnResources if the container does not already have oneAnnResources resources = _automation.Manager.Resources;if (resources == null){resources = new AnnResources();}// Get the images collectionIList<AnnPicture> imagesResources = resources.Images;// Add our picture to itimagesResources.Add(new AnnPicture(@"ms-appx:///Assets/Lock.png"));int pictureIndex = imagesResources.Count - 1;// Add a blue on yellow rectangle from 3in 3in to 4in 4inAnnRectangleObject rectObj = new AnnRectangleObject();rectObj.Rect = LeadRectD.Create(3 * inch, 3 * inch, 1 * inch, 1 * inch);rectObj.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthD.Create(1));rectObj.Fill = AnnSolidColorBrush.Create("Yellow");// Set its lock picturerectObj.LockPicture = pictureIndex;// Add it to the containercontainer.Children.Add(rectObj);// Show the object lock state (default)Debug.WriteLine("Default lock state");ShowLockedState(rectObj);// Lock it with a passwordDebug.WriteLine("Locking now with a password");rectObj.Lock("secret");// Show the object lock state, it should say locked and the object should be painted with the lock pictureShowLockedState(rectObj);// Now try to unlock it with a wrong passwordDebug.WriteLine("Unlocking with a wrong password");rectObj.Unlock("wrong password");// Check again, it should still be lockedShowLockedState(rectObj);// Finally unlock it with the correct passwordDebug.WriteLine("Unlocking with a correct password");rectObj.Unlock("secret");// Check again, it should still be unlockedShowLockedState(rectObj);}private void ShowLockedState(AnnObject annObj){_automation.Invalidate(LeadRectD.Empty);// Show the object lock state (default)Debug.WriteLine("Locked: " + annObj.IsLocked);}
using Leadtools.Converters;using Leadtools.Annotations.Automation;using Leadtools.Controls;using Leadtools.Annotations.Core;using Leadtools.Codecs;public void AnnObject_Lock(){double inch = 720.0;// Get the containerAnnContainer container = _automation.Container;// Add the lock picture to the container resources// Create a new instance of AnnResources if the container does not already have oneAnnResources resources = _automation.Container.Resources;if (resources == null) {resources = new AnnResources();_automation.Container.Resources = resources;}// Get the images collectionIList<AnnPicture> imagesResources = resources.Images;// Add our picture to itimagesResources.Add(new AnnPicture(@"ms-appx:///Assets/Lock.png"));int pictureIndex = imagesResources.Count - 1;// Add a blue on yellow rectangle from 3in 3in to 4in 4inAnnRectangleObject rectObj = new AnnRectangleObject();rectObj.Rect = LeadRectDHelper.Create(3 * inch, 3 * inch, 1 * inch, 1 * inch);rectObj.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthDHelper.Create(1));rectObj.Fill = AnnSolidColorBrush.Create("Yellow");// Set its lock picturerectObj.LockPicture = pictureIndex;// Add it to the containercontainer.Children.Add(rectObj);// Show the object lock state (default)Debug.WriteLine("Default lock state");ShowLockedState(rectObj);// Lock it with a passwordDebug.WriteLine("Locking now with a password");rectObj.Lock("secret");// Show the object lock state, it should say locked and the object should be painted with the lock pictureShowLockedState(rectObj);// Now try to unlock it with a wrong passwordDebug.WriteLine("Unlocking with a wrong password");rectObj.Unlock("wrong password");// Check again, it should still be lockedShowLockedState(rectObj);// Finally unlock it with the correct passwordDebug.WriteLine("Unlocking with a correct password");rectObj.Unlock("secret");// Check again, it should still be unlockedShowLockedState(rectObj);}private void ShowLockedState(AnnObject annObj){_automation.Invalidate(LeadRectDHelper.Empty);// Show the object lock state (default)Debug.WriteLine("Locked: " + annObj.IsLocked);}
|
Products |
Support |
Feedback: Lock Method (AnnObject) - Leadtools.Annotations.Core |
Introduction |
Help Version 19.0.2017.3.22
|

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.