Skip to content
Member Filters
Show Inherited
Show Protected
Show abstract
GR32_Gamma🞂UnregisterGammaChangeNotificationProcedure

UnregisterGammaChangeNotification

Unregisters an object method delegate from receiving global gamma change notifications.

Declaration ​

pascal
procedure UnregisterGammaChangeNotification(Delegate: TGammaChangedProc);

Parameters ​

ParameterTypeDescription
DelegateTGammaChangedProcPreviously registered object method delegate.

Description ​

UnregisterGammaChangeNotification removes a previously registered callback delegate (TGammaChangedProc) from the global gamma notification list.

Example ​

pascal
destructor TMyImageControl.Destroy;
begin
  UnregisterGammaChangeNotification(GammaChanged);
  inherited;
end;

See also ​