Download this file

28 lines (20 with data), 778 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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