classdef( Hidden, Sealed ) ChildEvent < event.EventData
%uix.ChildEvent Event data for child event
%
% e = uix.ChildEvent(c) creates event data including the child c.
% Copyright 2009-2015 The MathWorks, Inc.
% $Revision: 1165 $ $Date: 2015-12-06 03:09:17 -0500 (Sun, 06 Dec 2015) $
properties( SetAccess = private )
Child % child
end
methods
function obj = ChildEvent( child )
%uix.ChildEvent Event data for child event
%
% e = uix.ChildEvent(c) creates event data including the child
% c.
% Set properties
obj.Child = child;
end % constructor
end % structors
end % classdef