Skip to main content
All docs
V25.1
  • PdfComboBoxFormFieldFacade.Value Property

    Gets or sets the form field value—the name of the selected combo box item.

    Namespace: DevExpress.Pdf

    Assembly: DevExpress.Pdf.v25.1.Core.dll

    NuGet Package: DevExpress.Pdf.Core

    Declaration

    public string Value { get; set; }

    Property Value

    Type Description
    String

    The name of the combo box item.

    Remarks

    The code sample below specifies the combo box value:

    using (PdfDocumentProcessor pdfDocumentProcessor = new PdfDocumentProcessor())
    {
        pdfDocumentProcessor.LoadDocument("Documents//FormDemo.pdf");
    
        PdfDocumentFacade documentFacade = pdfDocumentProcessor.DocumentFacade;
        PdfAcroFormFacade acroForm = documentFacade.AcroForm;
    
        //Set combo box field value:
        PdfComboBoxFormFieldFacade nationalityField = acroForm.GetComboBoxFormField("Nationality");
        nationalityField.Value = nationalityField.Items[68].Value;
    }
    
    See Also