[]
Gets or sets the text entries in the specified list box or combo box.
string[] List(string[] entries = null)
Function List(Optional entries As String() = Nothing) As String()
Type | Name | Description |
---|---|---|
string[] | entries | The text entries to set. |
Type | Description |
---|---|
string[] | The text entries of the list box or combo box. |
Setting this property clears any range specified by the ListFillRange property.
Gets or sets the single text entry in the specified list box or combo box.
string List(int index, string entry = null)
Function List(index As Integer, Optional entry As String = Nothing) As String
Type | Name | Description |
---|---|---|
int | index | The index number of a single text entry. |
string | entry | The single text entry to set. |
Type | Description |
---|---|
string | The single text entry at the specified index. |
Setting this property clears any range specified by the ListFillRange property.