|
We iterate through each of the top level fields. For each field
we set the value of the field to be equal to the value of the name.
[C#]
foreach (Field theField in theDoc.Form.Fields) {
theField.Value = theField.Name;
}
[Visual Basic]
Dim theField As Field
For Each theField in theDoc.Form.Fields
theField.Value = theField.Name
Next
|