Package: gobject

Function g-object-interface-find-property

Lambda List

g-object-interface-find-property (gtype name)

Arguments

gtype -- a g-type type ID for an interface type
name -- a string with the name of a property to lookup

Return Value

The g-param-spec instance for the property of the interface type with, or nil if no such property exists.

Details

Find the g-param-spec instance with the given property name for an interface type.

Examples

(g-object-interface-find-property "GAction" "name")
=> #.(SB-SYS:INT-SAP #X55A6D24988C0)
(g-param-spec-name *)
=> "name"
(g-object-interface-find-property "GAction" "unknown")
=> NIL    
 

See also

2021-9-11