function applyTimePlotOpts(this,h,varargin)
%APPLYTIMEPLOTOPTS  set timeplot properties

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

if isempty(varargin) 
    allflag = false;
else
    allflag = varargin{1};
end

h.AxesGrid.YNormalization = this.Normalize;  
h.Preferences.SettlingTimeThreshold = this.SettleTimeThreshold;
h.Preferences.RiseTimeLimits = this.RiseTimeLimits;    
                 
if allflag
   applyRespPlotOpts(this,h,allflag);
end