Aracılığıyla paylaş


Automation.PropertyName(AutomationProperty) Yöntem

Tanım

Belirtilen UI Otomasyonu özelliğinin adını alır.

public:
 static System::String ^ PropertyName(System::Windows::Automation::AutomationProperty ^ property);
public static string PropertyName (System.Windows.Automation.AutomationProperty property);
static member PropertyName : System.Windows.Automation.AutomationProperty -> string
Public Shared Function PropertyName (property As AutomationProperty) As String

Parametreler

property
AutomationProperty

Adlandırılmış özelliğin UI Otomasyonu özellik tanımlayıcısı.

Döndürülenler

String

belirtilen UI Otomasyonu özelliği bulunamazsa, UI Otomasyonu özelliğinin kolay adı veya null başvuru (NothingVisual Basic içinde).

Örnekler

Aşağıdaki örnekte, tarafından AutomationElementdesteklenen her özelliğin adı görüntülenir.

AutomationProperty[] properties = element.GetSupportedProperties();
foreach (AutomationProperty prop in properties)
{
    Console.WriteLine(prop.ProgrammaticName);
    Console.WriteLine(Automation.PropertyName(prop));
}
Dim properties As AutomationProperty() = element.GetSupportedProperties()
Dim prop As AutomationProperty
For Each prop In properties
    Console.WriteLine(prop.ProgrammaticName)
    Console.WriteLine(Automation.PropertyName(prop))
Next prop

Şunlara uygulanır