function p = getoptions(this,varargin)
%GETOPTIONS  Get plot options from a Bode plot
%
%  P = GETOPTIONS(H) returns the plot options P for a Bode plot with 
%  handle H. See BODEPLOT for details on obtaining H. 
%
%  P = GETOPTIONS(H,PropertyName) returns the specified options property, 
%  for the bode plot with handle H. 
% 
%  See also BODEPLOT, BODEOPTIONS, SETOPTIONS.

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

if length(varargin)>1
    error(sprintf('Invalid syntax.'))
end
    
p = plotopts.BodePlotOptions;
p = p.getBodePlotOpts(this,true);

if ~isempty(varargin)
    try
        p = p.(varargin{1});
    catch
        error(sprintf('Invalid property name.'))
    end
end