VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfInteractiveFormListBoxField Class / SelectedItem Property
Syntax Remarks Requirements SeeAlso
In This Topic
    SelectedItem Property (PdfInteractiveFormListBoxField)
    In This Topic
    Gets or sets a selected item of list box field.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(null)>
    <CategoryAttribute("Value")>
    <RefreshPropertiesAttribute(Repaint)>
    <DescriptionAttribute("A selected item of list box field.")>
    Public Overrides Property SelectedItem As System.String
    
    
    [DefaultValue(null)]
    [Category("Value")]
    [RefreshProperties(Repaint)]
    [Description("A selected item of list box field.")]
    public override System.String SelectedItem { get; set; }
    
    
    [DefaultValue(null)]
    [Category("Value")]
    [RefreshProperties(Repaint)]
    [Description("A selected item of list box field.")]
    public: __property System.String get_SelectedItem(); override;
    public: __property void set_SelectedItem(
    System.String value
    ); override;
    [DefaultValue(null)]
    [Category("Value")]
    [RefreshProperties(Repaint)]
    [Description("A selected item of list box field.")]
    public:
    property System.String SelectedItem { System.String get() override;; void set(System.String value) override;; }

    Property Value

    null if choice field does NOT have selected item;
    value of the DisplayedValue property if choice field has selected item.
    Remarks

    This property is inheritable.

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also