Nevron Open Vision Documentation
Nevron.Nov.UI Namespace / NComboBox Class / FillFromArray<TValue> Method
The type of the array values.
The values to fill the combo box with.


In This Topic
    FillFromArray<TValue> Method (NComboBox)
    In This Topic
    Fills the combo box with the values of the specified array. Assigns the corresponding array value to the Tag property of each combo box item.
    Syntax
    'Declaration
     
    
    Public Sub FillFromArray(Of TValue)( _
       ByVal values() As TValue _
    ) 
    'Usage
     
    
    Dim instance As NComboBox
    Dim values() As TValue
     
    instance.FillFromArray(Of TValue)(values)
    public void FillFromArray<TValue>( 
       TValue[] values
    )

    Parameters

    values
    The values to fill the combo box with.

    Type Parameters

    TValue
    The type of the array values.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also