Propriedade ListBox.Selected (Script do Outlook Forms)
Returns or sets a Boolean that indicates the selection state of items in a ListBox. Leitura/gravação.
Sintaxe
expressão. Selecionado(pvargIndex)
expressão Uma variável que representa um objeto ListBox.
Parâmetros
Nome | Obrigatório/Opcional | Tipo de dados | Descrição |
---|---|---|---|
pvargIndex | Obrigatório | Variantes | Um inteiro com um intervalo de 0 ao número de itens na lista menos 1. |
Comentários
True to indicate that the specified item is selected, False if it is not selected.
The Selected property is useful when users can make multiple selections. Use essa propriedade para determinar as linhas selecionadas em uma caixa de lista de várias seleções. You can also use this property to select or deselect rows in a list from code.
The default value of this property is based on the current selection state of the ListBox.
For single-selection list boxes, the Value or ListIndex properties are recommended for getting and setting the selection. In this case, ListIndex returns the index of the selected item. However, in a multiple selection, ListIndex returns the index of the row contained within the focus rectangle, regardless of whether the row is actually selected.
When a list box control's MultiSelect property is set to 0, only one row can have its Selected property set to True.
Entering a value that is out of range for the index does not generate an error message, but does not set a property for any item in the list.
Suporte e comentários
Tem dúvidas ou quer enviar comentários sobre o VBA para Office ou sobre esta documentação? Confira Suporte e comentários sobre o VBA para Office a fim de obter orientação sobre as maneiras pelas quais você pode receber suporte e fornecer comentários.