API Reference
Class
PdfFormFieldValue
Represents one or more values assigned to an AcroForm field.
Inheritance
- Object
- PdfFormFieldValue
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Method PdfFormDataSet.ToFieldValues
- Method PdfFormFieldValue.From
- Method PdfFormFieldValue.FromValues
- Method PdfFormFieldValue.FromValues
- Method PdfFormFieldValue.op_Implicit
Accepted by parameters
- Method PdfDocumentForms.AppendRevision
- Method PdfDocumentForms.AppendRevision
- Method PdfDocumentForms.Fill
- Method PdfDocumentForms.Fill
- Method PdfDocumentForms.FillAndFlatten
- Method PdfDocumentForms.FillAndFlatten
- Method PdfDocumentForms.TryAppendRevision
- Method PdfDocumentForms.TryAppendRevision
- Method PdfDocumentForms.TryFill
- Method PdfDocumentForms.TryFill
- Method PdfDocumentForms.TryFillAndFlatten
- Method PdfDocumentForms.TryFillAndFlatten
Methods
public static PdfFormFieldValue From(String value) #Returns:
PdfFormFieldValueCreates a scalar field value. Use an empty string to clear a simple text value.
Parameters
- value System.String
FromValues 2 overloads
public static PdfFormFieldValue FromValues(params String[] values) #Returns:
PdfFormFieldValueCreates a field value containing one or more entries, primarily for simple multi-select choice fields.
Parameters
- values System.String[]
public static PdfFormFieldValue FromValues(IEnumerable<String> values) #Returns:
PdfFormFieldValueCreates a field value containing one or more entries, primarily for simple multi-select choice fields.
Parameters
- values System.Collections.Generic.IEnumerable{System.String}
public static PdfFormFieldValue op_Implicit(String value) #Returns:
PdfFormFieldValueConverts a string into a scalar form field value.
Parameters
- value System.String