Skip Navigation Links.

H5D..::..getCreatePropertyList Method

Returns an identifier for a copy of the dataset creation property list for a dataset. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5D.html#Dataset-GetCreatePlist

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

Syntax

Visual Basic
Public Shared Function getCreatePropertyList ( _
	dataSetId As H5DataSetId _
) As H5PropertyListId
C#
public static H5PropertyListId getCreatePropertyList(
	H5DataSetId dataSetId
)
Visual C++
public:
static H5PropertyListId^ getCreatePropertyList(
	H5DataSetId^ dataSetId
)
JavaScript
HDF5DotNet.H5D.getCreatePropertyList = function(dataSetId);

Parameters

dataSetId
Type: HDF5DotNet..::..H5DataSetId
IN: Identifier of the dataset to be accessed.

Remarks

The creation property list identifier should be released with H5Pclose.

See Also