ISelectionItemProvider.IsSelected Propiedad

Definición

Obtiene un valor que indica si un elemento está seleccionado.

public:
 property bool IsSelected { bool get(); };
public bool IsSelected { get; }
member this.IsSelected : bool
Public ReadOnly Property IsSelected As Boolean

Valor de propiedad

true si el elemento está seleccionado; en caso contrario, false.

Ejemplos

El código de ejemplo siguiente devuelve true si este elemento está en la colección de elementos seleccionados.

/// <summary>
/// Specifies whether the item is selected.
/// </summary>
/// <remarks>
/// selectedItems is the collection of selected ListItems.
/// </remarks>
public bool IsSelected
{
    get
    {
        return selectedItems.Contains(this);
    }
}
''' <summary>
''' Specifies whether the item is selected.
''' </summary>
''' <remarks>
''' selectedItems is the collection of selected ListItems.
''' </remarks>
Public ReadOnly Property IsSelected() As Boolean Implements ISelectionItemProvider.IsSelected
    Get
        Return selectedItems.Contains(Me)
    End Get
End Property

Se aplica a

Consulte también