function tsprops(this)
%   TIME SERIES OBJECT PROPERTIES:
%
%      Events: information about events that occur during the time series,
%      including the following properties. See ADDEVENT for more
%      information about adding an event to a time series object.
%          EventData: use this property to include any additional information
%                     about the event
%          Name: a string giving the name of the event
%          Time: the time at which this event occurs
%          Parent: the time series object that this event is associated with
%
%      Name: a string defining the name of the time series object
%
%      Data: a numerical array of the ordinate, dependent data in the time
%            series
%
%      DataInfo: information about the numerical data, including the
%                following properties:
%          Units: a user-defined string describing the units for the data
%          Scale: user-defined information about the scale of this data
%          Interpolation: information about the interpolation method for the
%                         data associated with this time series object,
%                         including the following properties:
%              Fhandle: the function handle to the interpolation function
%              Name: the string describing the interpolation method.
%                    Typically either 'zoh' (default) or 'linear'.
%          Offset: user-defined information about the offset of this data
%          Name: this property is set to 'Data'. It cannot be changed.
%          GridFirst: set to 1 when the first dimension of the data array is
%                   associated with the time vector (default) and set to 0
%                   when the last dimension of the data array is associated
%                   with the time vector.
%
%      Time: vector of time values
%
%      TimeInfo: information about the time vector, including the following
%                properties:
%          Units: allowable options include 'secs', 'mins', 'hours', 'days',
%                'weeks', 'months', and 'years'
%          Start: starting time
%          End: ending time
%          Increment: interval between time points
%          Length: number of elements in the time vector
%          Format: string defining the format that the date and time appears
%                  for this time series object. Refer to DATESTR for 
%                  available options.
%          Startdate: string defining the starting time for the time series
%                   object. The times in the time vector are all relative 
%                   to this time. See GETABSTIME for more information about
%                   the absolute time vector.
%          GridFirst: set to 1. Cannot be changed
%
%      Quality: a user-defined vector of integers describing the quality of
%               the data in the time series object.
%
%      QualityInfo: information about the integer code used to describe the
%                   quality of the data, including the following
%                   properties:
%          Codes: vector of the integer values used to describe quality
%          Desription: cell array of strings, each giving a description of
%                    the quality associated with each integer value
%          GridFirst: set to 1. Cannot be changed
