ISelectionProvider.IsSelectionRequired Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob der Benutzeroberflächenautomatisierungs-Anbieter die Auswahl mindestens eines untergeordneten Elements erfordert.

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

Eigenschaftswert

true, wenn eine Auswahl erforderlich ist, andernfalls false.

Beispiele

Das folgende Beispiel zeigt eine Implementierung dieser Methode für eine Liste, für die jederzeit ein Element ausgewählt werden muss.

/// <summary>
/// Specifies whether the list must have an item selected at all times.
/// </summary>
bool ISelectionProvider.IsSelectionRequired
{
    get
    {
        return true;
    }
}
''' <summary>
''' Specifies whether the list must have an item selected at all times.
''' </summary>
Private ReadOnly Property IsSelectionRequired() As Boolean Implements ISelectionProvider.IsSelectionRequired
    Get
        Return True
    End Get
End Property

Hinweise

Diese Eigenschaft kann dynamisch sein. Beispielsweise sind falsefür den Anfangszustand eines Steuerelements standardmäßig keine Elemente ausgewählt, d. hIsSelectionRequired. . Nach dem Auswählen eines Elements muss für das Steuerelement jedoch immer mindestens ein Element ausgewählt sein.

Gilt für:

Weitere Informationen