function deleteview(this)
%DELETEVIEW  Deletes @view and associated g-objects.

%  Copyright 1986-2004 The MathWorks, Inc.
%  $Revision: 1.1.6.1 $ $Date: 2004/12/26 21:37:36 $

%% Overloaded since the call to ghandles in the parent method cannot return
%% the links or the labels

for ct = 1:length(this)
   delete(this(ct).VLines(ishandle(this(ct).VLines)));
   delete(this(ct).Points(ishandle(this(ct).Points)));
end

% Delete views
delete(this)
