variable {Microsoft.VisualBasic.DataStorage.netCDF.Components} .NET clr documentation

variable

Description

变量对象,CDF文件之中的实验数据之类的数据都是保存于这个对象之中的

Declare

            
# namespace Microsoft.VisualBasic.DataStorage.netCDF.Components
export class variable {
   # Array with the attributes of the variable
   attributes: attribute[];
   dimensionality: dimensionality;
   # Array with the dimension IDs of the variable.
   #  (Header.dimensions)
   dimensions: integer;
   # String with the name of the variable
   name: string;
   # Number with the offset where of the variable begins
   offset: integer;
   # True if Is a record variable, false otherwise
   record: boolean;
   # Number with the size of the variable.(在文件之中的数据字节大小)
   size: integer;
   # String with the type of the variable
   type: CDFDataTypes;
   # 惰性求值的属性
   value: ICDFDataVector;
}

        

.NET clr type reference tree

  1. use by property member attributes: attribute
  2. use by property member dimensionality: dimensionality
  3. use by property member type: CDFDataTypes
  4. use by property member value: ICDFDataVector

[Package {$package} version {$version} Index]