| PdfFieldValue Property |
Gets or Sets field's value
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public string Value { get; set; }
Public Property Value As String
Get
Set
public:
property String^ Value {
String^ get ();
void set (String^ value);
}
member Value : string with get, set
/** @property */
public String get_Value()
/** @property */
public void set_Value(String value)
function get_Value();
function set_Value(value);
Property Value
StringExceptions Exception | Condition |
---|
DomException | Generated for newly created fields that have not yet been added to the DOM. |
Remarks
Make sure the field does not have input focus before setting the value. If the field has input focus, setting the value has no effect.
In order to remove the input focus, call the
ForceToKillFocus method.
See Also