function Constraints = findconstr(Editor)
%FINDCONSTR   Finds all active design constraints objects attached to an Editor.

%   Copyright 1986-2004 The MathWorks, Inc. 
%   $Revision: 1.2.4.1 $  $Date: 2004/12/10 19:25:36 $

Constraints = find(Editor.Axes.getaxes, '-isa', 'plotconstr.designconstr',...
   'Activated', 1);

