Gets an attribute creation property list identifier
Procedure:
H5A_GET_CREATE_PLIST ( attr_id )
Signature:
hid_t H5Aget_create_plist(hid_t attr_id)
Fortran90 Interface: h5aget_create_plist_f
SUBROUTINE h5aget_create_plist_f(attr_id, creation_prop_id, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: attr_id
! Identifier of the attribute
INTEGER(HID_T), INTENT(OUT) :: creation_prop_id
! Identifier for the attribute’s creation property
INTEGER, INTENT(OUT) :: hdferr
! Error code:
! 0 on success and -1 on failure
END SUBROUTINE h5aget_create_plist_f
Parameters:
hid_t attr_id
IN: Identifier of the attribute
Description:
H5A_GET_CREATE_PLIST returns an identifier for the attribute creation property list associated with the attribute specified by attr_id.
The creation property list identifier should be released with H5P_CLOSE.
Returns:
Returns an identifier for the attribute’s creation property list if successful. Otherwise returns a negative value.
Example:
History:
Release | Change |
---|
1.8.0 | Function introduced in this release. |
--- Last Modified: December 20, 2018 | 01:58 PM