Field list indexer.
Namespace:
MicroFocus.ZFE.Connector
Assembly:
MicroFocus.ZFE.Connector (in MicroFocus.ZFE.Connector.dll) Version: 2.1.1566.0 (2.1.1566.0)
Syntax IField this[
int index
] { get; }
ReadOnly Default Property Item (
index As Integer
) As IField
Get
Parameters
- index
- Type: SystemInt32
The index value.
Return Value
Type:
IFieldA 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