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