Package: gobject

Function g-object-interface-list-properties

Lambda List

g-object-interface-list-properties (gtype)

Arguments

gtype -- a g-type type ID of an interface type

Return Value

A list of g-param-spec instances for all properties of an interface type.

Details

Lists the properties of an interface type.

Example

(mapcar #'g-param-spec-name
        (g-object-interface-list-properties "GAction"))
=> ("enabled" "name" "parameter-type" "state" "state-type")    
 

See also

2021-9-11