Defines an annotation redaction object.
public class AnnRedactionObject : Leadtools.Windows.Annotations.AnnRectangleObject, Leadtools.Windows.Annotations.IAnnHeader, Leadtools.Windows.Annotations.IAnnObject, Leadtools.Windows.Annotations.IAnnRectangle
Public Class AnnRedactionObject
Inherits Leadtools.Windows.Annotations.AnnRectangleObject
Implements Leadtools.Windows.Annotations.IAnnHeader, Leadtools.Windows.Annotations.IAnnObject, Leadtools.Windows.Annotations.IAnnRectangle
public ref class AnnRedactionObject : public Leadtools.Windows.Annotations.AnnRectangleObject, Leadtools.Windows.Annotations.IAnnHeader, Leadtools.Windows.Annotations.IAnnObject, Leadtools.Windows.Annotations.IAnnRectangle
The redaction annotation object is a rectangle with default properties that are appropriate for blacking out an area. The Realize method lets you block the area on the image with the current object brush value. The Restore method lets you restore the area back. For more information about the redaction annotation object refer to AnnRedactionObject for WPF. For more information about the automated redaction annotation object, refer to WPF Annotation Objects - Automated Features.
If you are interested in locking an object, refer to Implementing WPF Annotation Security.
This example creates a new redaction object, and then addes it to the container.
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations
Private Sub AnnRedactionObject_AnnRedactionObject(ByVal viewer As ImageViewer, ByVal container As AnnContainer)
Dim redaction As AnnRedactionObject = New AnnRedactionObject()
redaction.Rect = New Rect(100, 100, 300, 300)
container.Children.Add(redaction)
MessageBox.Show(String.Format("Added. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' realize the redaction object
redaction.Realize(viewer)
MessageBox.Show(String.Format("Realized. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' remove the redaction object from the container
container.Children.Remove(redaction)
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count))
' add the redaction object back
container.Children.Add(redaction)
MessageBox.Show(String.Format("Added back. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' restore the redaction object
redaction.Restore(viewer)
MessageBox.Show(String.Format("Restored. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' remove the redaction again from the container
container.Children.Remove(redaction)
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count))
End Sub
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Demos;
using Leadtools.Help;
private void AnnRedactionObject_AnnRedactionObject(ImageViewer viewer, AnnContainer container)
{
AnnRedactionObject redaction = new AnnRedactionObject();
redaction.Rect = new Rect(100, 100, 300, 300);
container.Children.Add(redaction);
MessageBox.Show(String.Format("Added. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// realize the redaction object
redaction.Realize(viewer);
MessageBox.Show(String.Format("Realized. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// remove the redaction object from the container
container.Children.Remove(redaction);
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count));
// add the redaction object back
container.Children.Add(redaction);
MessageBox.Show(String.Format("Added back. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// restore the redaction object
redaction.Restore(viewer);
MessageBox.Show(String.Format("Restored. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// remove the redaction again from the container
container.Children.Remove(redaction);
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count));
}
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Examples;
private void AnnRedactionObject_AnnRedactionObject(ImageViewer viewer, AnnContainer container)
{
AnnRedactionObject redaction = new AnnRedactionObject();
redaction.Rect = new Rect(100, 100, 300, 300);
container.Children.Add(redaction);
MessageBox.Show(String.Format("Added. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// realize the redaction object
redaction.Realize(viewer);
MessageBox.Show(String.Format("Realized. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// remove the redaction object from the container
container.Children.Remove(redaction);
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count));
// add the redaction object back
container.Children.Add(redaction);
MessageBox.Show(String.Format("Added back. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// restore the redaction object
redaction.Restore(viewer);
MessageBox.Show(String.Format("Restored. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count));
// remove the redaction again from the container
container.Children.Remove(redaction);
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count));
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations
Private Sub AnnRedactionObject_AnnRedactionObject(ByVal viewer As ImageViewer, ByVal container As AnnContainer)
Dim redaction As AnnRedactionObject = New AnnRedactionObject()
redaction.Rect = New Rect(100, 100, 300, 300)
container.Children.Add(redaction)
MessageBox.Show(String.Format("Added. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' realize the redaction object
redaction.Realize(viewer)
MessageBox.Show(String.Format("Realized. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' remove the redaction object from the container
container.Children.Remove(redaction)
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count))
' add the redaction object back
container.Children.Add(redaction)
MessageBox.Show(String.Format("Added back. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' restore the redaction object
redaction.Restore(viewer)
MessageBox.Show(String.Format("Restored. IsRealized: {0}, Objects in container: {1}", redaction.IsRealized, container.Children.Count))
' remove the redaction again from the container
container.Children.Remove(redaction)
MessageBox.Show(String.Format("Removed. Objects in container: {0}", container.Children.Count))
End Sub
Products |
Support |
Feedback: AnnRedactionObject Class - Leadtools.Windows.Annotations |
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.