Gets the current AnnObject being edited.
public virtual Leadtools.Annotations.AnnObject CurrentEditObject {get;}
Public Overridable ReadOnly Property CurrentEditObject As Leadtools.Annotations.AnnObject
public:
virtual property Leadtools.Annotations.AnnObject^ CurrentEditObject {
Leadtools.Annotations.AnnObject^ get();
}
The current AnnObject being edited; null (Nothing in VB) if no objects are currently being edited.
The current object being edited is the AnnObject currently "selected" where its AnnEditDesigner is currently active.
This is the object that will be processed when calling any of the object processing methods of this AnnAutomation. For example, calling Copy will copy the CurrentEditObject into the clipboard.
You can change the CurrentEditObject by calling StartEditing.
This example changes the pen of the object that is currently being edited to a Red pen that has a width of 2 pixels.
using Leadtools;
using Leadtools.Annotations;
using Leadtools.WinForms;
using Leadtools.Drawing;
public void AnnAutomation_ChangePenToBlue(AnnAutomation automation)
{
// check if an object is currently "selected"
if (automation.CurrentEditObject != null)
{
// check if this object supports a pen
if (automation.CurrentEditObject.SupportsPen)
{
// change its pen
automation.BeginUndo();
automation.CurrentEditObject.Pen = new AnnPen(Color.Blue, new AnnLength(2, AnnUnit.Pixel));
automation.EndUndo();
automation.Viewer.Invalidate(automation.CurrentEditObject.InvalidRectangle);
}
}
}
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.WinForms
Imports Leadtools.Drawing
Public Sub AnnAutomation_ChangePenToBlue(ByVal automation As AnnAutomation)
' check if an object is currently "selected"
If Not automation.CurrentEditObject Is Nothing Then
' check if this object supports a pen
If automation.CurrentEditObject.SupportsPen Then
' change its pen
automation.BeginUndo()
automation.CurrentEditObject.Pen = New AnnPen(Color.Blue, New AnnLength(2, AnnUnit.Pixel))
automation.EndUndo()
automation.Viewer.Invalidate(automation.CurrentEditObject.InvalidRectangle)
End If
End If
End Sub
Products |
Support |
Feedback: CurrentEditObject Property - Leadtools.Annotations |
Introduction |
Help Version 19.0.2017.6.20
|
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.