ObjectWrap.notify

void notify(string propertyName)

Emits a "notify" signal for the property property_name on object.

When possible, eg. when signaling a property change from within the class that registered the property, you should use [gobject.object.ObjectWrap.notifyByPspec] instead.

Note that emission of the notify signal may be blocked with [gobject.object.ObjectWrap.freezeNotify]. In this case, the signal emissions are queued and will be emitted (in reverse order) when [gobject.object.ObjectWrap.thawNotify] is called.

Parameters

propertyNamethe name of a property installed on the class of object.