Package: gobject

Function gobject:object-class-list-properties

Lambda List

gobject:object-class-list-properties (gtype)

Arguments

gtype -- a g:type-t type ID of an object class

Return Value

The list of g:param-spec instances.

Details

Gets a list of g:param-spec instances for all properties of an object class type. Signals an error if the gtype type ID is not a "GObject" type.

Example

(mapcar #'g:param-spec-name
        (g:object-class-list-properties "GApplication"))
=> ("application-id" "flags" "resource-base-path" "is-registered"
    "is-remote" "inactivity-timeout" "action-group" "is-busy")    
 

See also

2023-12-1