Getting a Handle
on the Far Field Result
Get a handle
on the far field result in the far field collection.
myFarFieldResult = myApplication.Models[1].Configurations[1].FarFields[1]
- A far field result is an object and since there may be multiple far field results in a project, it is part of the FarFieldCollection.
- Search for FarFieldCollection in the Help1.
-
In FarFieldCollection, under Index
List, note the following options to specify a specific far field
result in the collection:
- [number]
- [string]
To specify the far field data in the collection, we will use [number] since we only added a single far field request (as a result there will only be one far field result.
-
In the Help, under
, note the following:
SolutionConfiguration object has collection FarFields.
The result is then:FarFields[1]
-
Determine the syntax to prepend to FarFields[1]:
-
Determine the syntax to prepend to Configurations[1]:
-
Add a reference to the far field result:
myFarFieldResult = myApplication.Models[1].Configurations[1].FarFields[1]