FieldNames

Form.FieldNames property

Obtient la liste des noms de champs sur le formulaire.

public string[] FieldNames { get; }

Exemples

Form form = new Form("PdfForm.pdf");
string[] fields = form.FieldNames;
foreach(string field in fields)
{
  Console.WriteLine(field);
}

Voir également