Interface IWriteAttributeEvent
Write attribute event information.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IWriteAttributeEvent : IAttributeEvent, IEntityEvent, IHostSessionEvent, IModelEvent, IEvent
Remarks
Write attribute event information. See WriteAttribute(IWriteAttributeEvent)
Properties
AttributeWriteValue
Gets the value to be written to the attribute.
Declaration
string AttributeWriteValue { get; }
Property Value
Type | Description |
---|---|
string | the value to be written |
Remarks
Gets the value to be written to the attribute. The model-defined prepending, appending and padding will not have been performed on this value.
Methods
DefaultWriteAttribute()
Writes the value returned by AttributeWriteValue to the attribute.
Declaration
void DefaultWriteAttribute()
Remarks
Writes the value returned by AttributeWriteValue to the attribute. The prepending, appending and padding of spaces will be performed as defined in the model. Any before, underfill and after operations defined on the attribute will be executed.
Exceptions
Type | Condition |
---|---|
ApptrieveException | if the write fails |
DefaultWriteAttribute(string)
Writes the specified value to the attribute.
Declaration
void DefaultWriteAttribute(string Value)
Parameters
Type | Name | Description |
---|---|---|
string | Value | the value to write |
Remarks
Writes the specified value to the attribute. The prepending, appending and padding of spaces will be performed as defined in the model. Any before, underfill and after operations defined on the attribute will be executed.
Exceptions
Type | Condition |
---|---|
ApptrieveException | if the write fails |