Skip to main content Skip to complementary content

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

 

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!