(g-object-call-get-property object-ptr property-name &optional property-type) => property-value
Retrieves the value of a property property-name
of object pointed to by object-ptr
. property-type
specifies the type of a property; it may be omitted.
Example:
(g-object-call-constructor "GtkButton" '("label" "use-underline") '("Hello" t) '("gchararray" "gboolean")) => #.(SB-SYS:INT-SAP #X006D8900) (g-object-call-get-property * "label") => "Hello" (g-object-call-get-property ** "use-underline") => T