Package: gobject
Function g-object-class-find-property
Lambda Listg-object-class-find-property (gtype name) ArgumentsReturn Value The g-param-spec instance for the property, or nil if the
object class does not have a property of that name. Details Looks up the g-param-spec instance for a property of an object
class type. Example(setq pspec (g-object-class-find-property "GtkLabel" "label")) => #.(SB-SYS:INT-SAP #X009FC730) (g-param-spec-type pspec) => #<GTYPE :name "GParamString" :id 9641904> (g-param-spec-value-type pspec) => #<GTYPE :name "gchararray" :id 64> (g-param-spec-name pspec) => "label" | See also |
2021-9-11