←Select platform

CurrentEditObject Property

Summary

Gets the current AnnObject being edited.

Syntax

C#
VB
C++
public AnnObject CurrentEditObject { get; } 
  
Public ReadOnly Property CurrentEditObject As Leadtools.Windows.Annotations.AnnObject 
public: 
property Leadtools.Windows.Annotations.AnnObject^ CurrentEditObject { 
   Leadtools.Windows.Annotations.AnnObject^ get(); 
} 

Property Value

The current AnnObject being edited; null (Nothing in VB) if no objects are currently being edited.

Remarks

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.

Example

This example changes the stroke of the object that is currently being edited to a Red pen that has a width of 2 pixels.

C#
VB
Silverlight C#
Silverlight VB
using Leadtools.Windows.Controls; 
using Leadtools.Windows.Annotations; 
using Leadtools.Demos; 
using Leadtools.Help; 
 
private void AnnAutomation_ChangeStrokeToBlue(AnnAutomation automation) 
{ 
   // check if an object is currently "selected" 
   if (automation.CurrentEditObject != null) 
   { 
      // check if this object supports a pen 
      if (automation.CurrentEditObject.SupportsStroke) 
      { 
         // change its pen 
         automation.BeginUndo(); 
         automation.CurrentEditObject.Stroke = Colors.Blue; 
         automation.CurrentEditObject.StrokeThickness = 2.0; 
 
         automation.EndUndo(); 
      } 
   } 
} 
Imports Leadtools.Windows.Controls 
Imports Leadtools.Windows.Annotations 
 
Private Sub AnnAutomation_ChangeStrokeToBlue(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.SupportsStroke Then 
         ' change its pen 
         automation.BeginUndo() 
         automation.CurrentEditObject.Stroke = Colors.Blue 
         automation.CurrentEditObject.StrokeThickness = 2.0 
 
         automation.EndUndo() 
      End If 
   End If 
End Sub 
using Leadtools.Windows.Controls; 
using Leadtools.Windows.Annotations; 
using Leadtools.Examples; 
using Leadtools.Silverlight.Demos; 
//using Leadtools.Help; 
 
private void AnnAutomation_ChangeStrokeToBlue(AnnAutomation automation) 
{ 
   // check if an object is currently "selected" 
   if (automation.CurrentEditObject != null) 
   { 
      // check if this object supports a pen 
      if (automation.CurrentEditObject.SupportsStroke) 
      { 
         // change its pen 
         automation.BeginUndo(); 
         automation.CurrentEditObject.Stroke = Colors.Blue; 
         automation.CurrentEditObject.StrokeThickness = 2.0; 
 
         automation.EndUndo(); 
      } 
   } 
} 
Imports Leadtools.Windows.Controls 
Imports Leadtools.Windows.Annotations 
Imports Leadtools.Silverlight.Demos 
'using Leadtools.Help; 
 
Private Sub AnnAutomation_ChangeStrokeToBlue(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.SupportsStroke Then 
         ' change its pen 
         automation.BeginUndo() 
         automation.CurrentEditObject.Stroke = Colors.Blue 
         automation.CurrentEditObject.StrokeThickness = 2.0 
 
         automation.EndUndo() 
      End If 
   End If 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Windows.Annotations Assembly