H5Aget_create_plist
(hid_t attr_id
)
H5Aget_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
H5Pclose
.
hid_t attr_id |
IN: Identifier of the attribute. |
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
Release | C |
1.8.0 | Function introduced in this release. |