Package: gobject

Function g-type-is-object

Lambda List

g-type-is-object (gtype)

Arguments

gtype -- a g-type type ID to check

Return Value

False or true, indicating whether the gtype argument is a +g-type-object+ type.

Details

Checks if the passed in type ID is a +g-type-object+ type or derived from it.

Examples

(g-type-is-object "GtkLabel") => T
(g-type-is-object "GtkActionable") => NIL
(g-type-is-object "gboolean") => NIL
(g-type-is-object "unknown") => NIL
(g-type-is-object nil) => NIL    
 

See also

2021-9-11