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

    Property Value

    null if list box does NOT have selected items;
    an array of values of the DisplayedValue property if list box has selected items.
    Remarks

    This property is inheritable.

    This property should be used only if IsMultiSelect is set to true.

    Requirements

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

    See Also