Error processing SSI file
LEADTOOLS Annotations (Leadtools.Annotations assembly)

Show in webframe

RedactionRealizePassword Property






Gets or sets the password used for realization of AnnRedactionObject objects.
Syntax
public string RedactionRealizePassword {get; set;}
'Declaration
 
Public Property RedactionRealizePassword As String
'Usage
 
Dim instance As AnnAutomationManager
Dim value As String
 
instance.RedactionRealizePassword = value
 
value = instance.RedactionRealizePassword

            

            
public:
property String^ RedactionRealizePassword {
   String^ get();
   void set (    String^ value);
}

Property Value

The password used for realization of AnnRedactionObject objects.
Remarks

When an AnnRedactionObject is realized through the user interface in design time, the object will automatically be locked by calling AnnObject.Lock with this value as the password. This will prevent the user from accidentally moving the realized AnnRedactionObject. The user has to manually unlock the object either by using the user interface or programmatically by calling AnnObject.Unlock with this property value as the password

You can disable this feature by setting this property to an empty string.

This property is disabled by default.

Example

This example sets "Leadtools" as the password used for automatically locking realized redaction objects.

Copy Code  
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.WinForms
Imports Leadtools.Codecs

Public Sub AnnAutomationManager_RedactionRealizePassword(ByVal manager As AnnAutomationManager)
   manager.RedactionRealizePassword = "Leadtools"
End Sub
using Leadtools;
using Leadtools.Annotations;
using Leadtools.WinForms;
using Leadtools.Codecs;

public void AnnAutomationManager_RedactionRealizePassword(AnnAutomationManager manager)
{
   manager.RedactionRealizePassword = "Leadtools";
}
Requirements

Target Platforms

See Also

Reference

AnnAutomationManager Class
AnnAutomationManager Members

Error processing SSI file
(Deprecated, use Leadtools.Annotations.Core instead)