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

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

if length(varargin)>1
    error(sprintf('Invalid syntax.'))
end

p = plotopts.NyquistPlotOptions;
p = p.getNyquistPlotOpts(this,true);

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