function schema
% Defines properties for @ValueArray base class.

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

% Register class 
c = schema.class(findpackage('hds'),'ValueArray');

% Public properties
p = schema.prop(c,'GridFirst','bool');      % Controls if grid dimensions appear first or last
p.FactoryValue = true;
schema.prop(c,'SampleSize','MATLAB array'); % Size of individual data point
p = schema.prop(c,'Metadata','handle');         % @metadata object
p.SetFunction = @privateSetMetaData;
schema.prop(c,'Variable','handle');         % @variable description
