←Select platform

Automations Property

Summary
Gets the collection of AnnAutomation objects in this AnnAutomationManager.
Syntax
C#
Objective-C
C++/CLI
Java
public AnnAutomations Automations { get; } 
@property (nonatomic, strong, readonly) LTAnnAutomations *automations; 
public AnnAutomations getAutomations() 
public:  
   property AnnAutomations^ Automations 
   { 
      AnnAutomations^ get() 
   } 

Property Value

The collection of AnnAutomations objects in the AnnAutomationManager.

Example
C#
using Leadtools.Annotations.Automation; 
using Leadtools.Annotations.Engine; 
using Leadtools.Codecs; 
using Leadtools.Controls; 
using Leadtools.Annotations.WinForms; 
using Leadtools.Annotations.Rendering; 
 
public void AnnAutomationManager_FindObjectById() 
{ 
	// find the line automation object 
	AnnAutomationObject obj = _automation.Manager.FindObjectById(AnnObject.LineObjectId); 
	if (obj != null) 
	{ 
		obj.ObjectTemplate.Stroke = AnnStroke.Create(AnnSolidColorBrush.Create("Blue"), LeadLengthD.Create(2)); 
	} 
} 
Requirements

Target Platforms

Help Version 22.0.2023.1.24
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Automation Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.