ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / ChoiceOption Class / ExportValue Property




In This Topic
    ExportValue Property (ChoiceOption)
    In This Topic
    Gets or sets a value indicating the string that is sent as the value of this choice when the field is submitted.
    Syntax
    'Declaration
     
    Public Property ExportValue As String
    'Usage
     
    Dim instance As ChoiceOption
    Dim value As String
     
    instance.ExportValue = value
     
    value = instance.ExportValue
    public string ExportValue {get; set;}
    public: __property string* get_ExportValue();
    public: __property void set_ExportValue( 
       string* value
    );
    public:
    property String^ ExportValue {
       String^ get();
       void set (    String^ value);
    }

    Property Value

    The text string that is sent as the value of this choice when the field is submitted.
    Exceptions
    ExceptionDescription
    For a RadioGroup or CheckBox, attemping to set the ExportValue to "Off" is ill-formed.
    See Also