Im trying to build an application that will make updates to dialog fields and properties but I'm having some issues getting the properties to update in my code.
for instance, if I have a list of fields in my application, I'm able to select each of them and look at certain field properties, such as whether the field is ReadOnly or Visible in the dialog.
However, it doesnt seem to work when I try to set the values of those fields by doing something like this
selectedField.Visible = true;
selectedField.ReadOnly = true;
Is this something that is possible with the SDK?