Add the accessible-id property (#9940)

Changelog: Added the `accessible-id` property
This commit is contained in:
Arnold Loubriat 2025-11-05 10:54:11 +01:00 committed by GitHub
parent 43f24171b3
commit 6348dc4b19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 95 additions and 0 deletions

View file

@ -250,6 +250,12 @@ public:
cbindgen_private::AccessibleStringProperty::Description);
}
/// Returns the accessible-id of that element, if any.
std::optional<SharedString> accessible_id() const
{
return get_accessible_string_property(cbindgen_private::AccessibleStringProperty::Id);
}
/// Returns the accessible-value-maximum of that element, if any.
std::optional<float> accessible_value_maximum() const
{