AutomationElement.NotSupported Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Indique qu'une propriété n'est pas prise en charge.
public: static initonly System::Object ^ NotSupported;
public static readonly object NotSupported;
staticval mutable NotSupported : obj
Public Shared ReadOnly NotSupported As Object
Valeur de champ
Exemples
L’exemple suivant récupère la propriété de texte d’aide pour un AutomationElement, en spécifiant que NotSupported doit être retourné si le contrôle ne prend pas en charge cette propriété.
// elementList is an AutomationElement.
object help = elementList.GetCurrentPropertyValue(AutomationElement.HelpTextProperty, true);
if (help == AutomationElement.NotSupported)
{
help = "No help available";
}
string helpText = (string)help;
' elementList is an AutomationElement.
Dim help As Object = elementList.GetCurrentPropertyValue(AutomationElement.HelpTextProperty, True)
If help Is AutomationElement.NotSupported Then
help = "No help available"
End If
Dim helpText As String = CStr(help)
Remarques
Cet identificateur est utilisé par les applications clientes UI Automation. Les fournisseurs UI Automation doivent utiliser l’identificateur équivalent dans AutomationElementIdentifiers.