Click or drag to resize

IFieldListItem Property

Field list indexer.

Namespace:  MicroFocus.ZFE.Connector
Assembly:  MicroFocus.ZFE.Connector (in MicroFocus.ZFE.Connector.dll) Version: 1.3.379.0 (1.3.379.0)
Syntax
IField this[
	int index
] { get; }

Parameters

index
Type: SystemInt32
The index value.

Return Value

Type: IField
A Field object.
Remarks
The FieldList index value is zero-based.
Examples
Visual Basic for Applications:
Dim fieldList As FieldList
Dim field As Field
Set fieldList = mySession.PresentationSpace.Fields

Set field = fieldList(0)
C#:
IField field = mySession.PresentationSpace.Fields[0];
See Also