Skip Navigation Links.

H5T..::..open Method (H5FileOrGroupId, , H5PropertyListId)

H5T.open opens a named datatype at the location specified by groupOrFileId and returns an identifier for the datatype. groupOrFileId is either a file or group identifier. The identifier should eventually be closed by calling H5Tclose to release resources. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5T.html

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

Syntax

Visual Basic
Public Shared Function open ( _
	groupOrFileId As H5FileOrGroupId, _
	datatypeName As String, _
	accessPropertyList As H5PropertyListId _
) As H5DataTypeId
C#
public static H5DataTypeId open(
	H5FileOrGroupId groupOrFileId,
	string datatypeName,
	H5PropertyListId accessPropertyList
)
Visual C++
public:
static H5DataTypeId^ open(
	H5FileOrGroupId^ groupOrFileId, 
	String^ datatypeName, 
	H5PropertyListId^ accessPropertyList
)
JavaScript
HDF5DotNet.H5T.open = function(groupOrFileId, datatypeName, accessPropertyList);

Parameters

groupOrFileId
Type: HDF5DotNet..::..H5FileOrGroupId
datatypeName
Type: String
IN: A datatype name, defined within the file or group identified by groupOrFileId.
accessPropertyList
Type: HDF5DotNet..::..H5PropertyListId
IN: Datatype access property list identifier.

Return Value

a vaild H5DataTypeId for the opened data type

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TopenException throws H5TopenException when open fails

See Also