public AnnObject CurrentEditObject { get; }
Public ReadOnly Property CurrentEditObject As AnnObject
@property (nonatomic,retain,readonly) LTAnnObject* currentEditObject;
public AnnObject getCurrentEditObject()
The current AnnObject being edited; null 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.
You can change the CurrentEditObject by calling SelectObject or SelectObjects.
This example changes the stroke of the object that is currently being edited to a red stroke that has a length of 2.
using Leadtools.Annotations.Automation;
using LeadtoolsExamples.Common;
using Leadtools.Annotations.Engine;
using Leadtools.Codecs;
using Leadtools.Controls;
using Leadtools.Annotations.Rendering;
using Leadtools.Annotations.WinForms;
public void AnnAutomation_CurrentEditObject()
{
// check if an object is currently "selected"
AnnObject currentEditObject = _automation.CurrentEditObject;
if (currentEditObject != null)
{
// check if this object supports a stroke
if (currentEditObject.SupportsStroke)
{
// change its stroke
_automation.BeginUndo();
currentEditObject.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthD.Create(2));
_automation.EndUndo();
_automation.Invalidate(LeadRectD.Empty);
}
else
{
Debug.WriteLine("This object does not support stroke, select another object");
}
}
else
{
Debug.WriteLine("Select an object first");
}
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document