Interface IAttributeEvent
Attribute event information.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IAttributeEvent : IEntityEvent, IHostSessionEvent, IModelEvent, IEvent
Properties
AttributeMetaData
Get the metadata for this attribute.
Declaration
IAttributeMetaData AttributeMetaData { get; }
Property Value
Type | Description |
---|---|
IAttributeMetaData | The metadata for the attribute. |
Exceptions
Type | Condition |
---|---|
ApptrieveException | Attachmate.Verastream.HostIntegrator.ScriptAPI.ApptrieveException thrown when there is an error obtaining the attribute metadata. |
AttributeName
The attribute name.
Declaration
string AttributeName { get; }
Property Value
Type | Description |
---|---|
string | The name of the attribute. |
TerminalRegion
Gets the screen region that describes the location, size and contents of the attribute.
Declaration
ITerminalRegion TerminalRegion { get; }
Property Value
Type | Description |
---|---|
ITerminalRegion | The location and contents of the attribute. |
Remarks
Gets the screen region that describes the location, size and contents of the attribute. The object returned can be cast to either LinearTerminalRegion or RectangularTerminalRegion depending on the type of region.
Exceptions
Type | Condition |
---|---|
ApptrieveException | Attachmate.Verastream.HostIntegrator.ScriptAPI.ApptrieveException thrown when there is no associated terminal region. |