Field List
The FieldList has a property Item which is an array of NxFieldDescription available in the app.
Example: This method displays the names of the fields in the app.
fieldList = App.GetFieldList(); foreach (var field in _fieldList.Items) { Console.WriteLine("Name :" + field.Name); }
Learn more
FieldDescription Class in the
API reference