Package: gtk

Function gtk:accessible-update-property

Lambda List

gtk:accessible-update-property (accessible &rest args)

Arguments

accessible -- a gtk:accessible object
args -- pairs of gtk:accessible-property values and the corresponding value for the property

Details

Updates a list of accessible properties. See the gtk:accessible-property documentation for the value types of accessible properties.

This function should be called by gtk:widget types whenever an accessible property change must be communicated to assistive technologies.

Examples

(let ((value (gtk:adjustment-value adjustment)))
  (gtk:accessible-update-property spinbutton :value-now value)
  ...)    
 

See also

2026-08-25