Skip Navigation Links.

H5T..::..vlenCreate Method (H5DataTypeId)

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Shared Function vlenCreate ( _
	baseId As H5DataTypeId _
) As H5DataTypeId
C#
public static H5DataTypeId vlenCreate(
	H5DataTypeId baseId
)
Visual C++
public:
static H5DataTypeId^ vlenCreate(
	H5DataTypeId^ baseId
)
JavaScript
HDF5DotNet.H5T.vlenCreate = function(baseId);

Parameters

baseId
Type: HDF5DotNet..::..H5DataTypeId
Base type of datatype to create.

Remarks

H5Tvlen_create creates a new variable-length (VL) datatype.

The base datatype will be the datatype that the sequence is composed of, characters for character strings, vertex coordinates for polygon lists, etc. The base type specified for the VL datatype can be of any HDF5 datatype, including another VL datatype, a compound datatype or an atomic datatype.

When necessary, use H5Tget_super to determine the base type of the VL datatype.

The datatype identifier returned from this function should be released with H5Tclose or resource leaks will result.

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TvlenCreateException throws H5TvlenCreateException on failure.

See Also