%GET    Get object properties.
%   V = GET(H,'PropertyName') returns the value of the specified
%   property for the graphics object with handle H.  If H is a 
%   vector of handles, then get will return an M-by-1 cell array
%   of values where M is equal to length(H).  If 'PropertyName' is
%   replaced by a 1-by-N or N-by-1 cell array of strings containing
%   property names, then GET will return an M-by-N cell array of
%   values.
%
%   GET(H) displays all property names and their current values for
%   the graphics object with handle H.
%
%   V = GET(H) where H is a scalar, returns a structure where each
%   field name is the name of a property of H and each field contains
%   the value of that property.
%
%   V = GET(0, 'Factory') 
%   V = GET(0, 'Factory<ObjectType>')
%   V = GET(0, 'Factory<ObjectType><PropertyName>') 
%   returns for all object types the factory values of all properties
%   which have user-settable default values.  
%
%   V = GET(H, 'Default') 
%   V = GET(H, 'Default<ObjectType>') 
%   V = GET(H, 'Default<ObjectType><PropertyName>') 
%   returns information about default property values (H must be
%   scalar).  'Default' returns a list of all default property values
%   currently set on H.  'Default<ObjectType>' returns only the
%   defaults for properties of <ObjectType> set on H.
%   'Default<ObjectType><PropertyName>' returns the default value
%   for the specific property, by searching the defaults set on H
%   and its ancestors, until that default is found.  If no default
%   value for this property has been set on H or any ancestor of H
%   up through the root, then the factory value for that property
%   is returned.
% 
%   Defaults can not be queried on a descendant of the object, or on the
%   object itself - for example, a value for 'DefaultAxesColor' can not
%   be queried on an axes or an axes child, but can be queried on a figure
%   or on the root.
%
%   When using the 'Factory' or 'Default' GET, if PropertyName is 
%   omitted then the return value will take the form of a
%   structure in which each field name is a property name and the 
%   corresponding value is the value of that property.  If 
%   PropertyName is specified then a matrix or string value will be
%   returned.
%   
%
%   See also SET, RESET, DELETE, GCF, GCA, FIGURE, AXES.

%   Copyright 1984-2002 The MathWorks, Inc. 
%   $Revision: 5.11 $  $Date: 2002/04/10 17:07:23 $
%   Built-in function.
