Form.GetFullFieldName

Form.GetFullFieldName method

Gets the full field name according to its short field name.

public string GetFullFieldName(string fieldName)
ParameterTypeDescription
fieldNameStringThe fully qualified field name.

Return Value

The full field name.

Examples

Form form = new Form("PdfForm.pdf");
Console.WriteLine("Full field name is : " + form.GetFullFieldName("textField"));

See Also