Name: H5Tget_create_plist
Signature:
hid_t H5Tget_create_plist( hid_t dtype_id )

Purpose:
Returns a copy of a datatype creation property list.

Description:
H5Tget_create_plist returns a property list identifier for the datatype creation property list associated with the datatype specified by dtype_id.

The creation property list identifier should be released with H5Pclose.

Parameter:
hid_t dtype_id     IN: Datatype identifier.

Returns:
Returns a datatype property list identifier if successful; otherwise returns a negative value.

Fortran90 Interface: h5tget_create_plist_f
SUBROUTINE h5tget_create_plist_f(dtype_id, dtpl_id, hdferr)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: dtype_id ! Datatype identifier
  INTEGER(HID_T), INTENT(OUT) :: dtpl_id ! Datatype property list identifier.
  INTEGER, INTENT(OUT) :: hdferr         ! Error code:
                                         ! 0 on success and -1 on failure
END SUBROUTINE h5tget_create_plist_f 
    

History:
Release     C
1.8.0 Function introduced in this release.