AIObjectDescription Class
The description of an AIObject test object.

C# Syntax

public class AIObjectDescription : HP.LFT.SDK.PropertiesDescription  
Inheritance Hierarchy

System.Object
   HP.LFT.SDK.PropertiesDescription
         HP.LFT.SDK.AI.AIObjectDescription

Public Constructors
 NameDescription
Protected ConstructorAIObjectDescription Constructor

Initializes a new instance of the AIObjectDescription class.  

C# Syntax

AIObjectDescription ()
Protected ConstructorAIObjectDescription Constructor (string)

Initializes a new instance of the AIObjectDescription class.  

C# Syntax

AIObjectDescription (string aiClass)

Parameters

aiClass - The AI Class type of the AI object (use the AITypes helper class).

Protected ConstructorAIObjectDescription Constructor (string, string)

Initializes a new instance of the AIObjectDescription class.  

C# Syntax

AIObjectDescription (string aiClass, string text)

Parameters

aiClass - The AI Class type of the AI object (use the AITypes helper class).

text - The associated text of the AI object.

Top
Public Properties
 NameDescription
Public PropertyAIClass
The AI Class type of the AI object. This can be an AIType or a registered custom class.

C# Syntax

string AIClass {get; set;}
Public PropertyText

The associated text of the AI object.

C# Syntax

StringProperty Text {get; set;}
Public PropertyLocator

The locator to use to uniquely identify the object.

C# Syntax

ILocator Locator {get; set;}
Top
Public Methods
 NameDescription
Public MethodCloneCreates an exact copy of the test object. (Inherited from HP.LFT.SDK.PropertiesDescription )
Top