Skip to content

Instantly share code, notes, and snippets.

@UweRaabe
UweRaabe / ActionHelper.pas
Created January 27, 2020 13:25
class helper for TBasicAction to access OnChange event
unit ActionHelper;
interface
type
TActionHelper = class helper for TBasicAction
private
function GetOnChange: TNotifyEvent;
procedure SetOnChange(const Value: TNotifyEvent);
public