Name: H5Gget_create_plist
Signature:
hid_t H5Gget_create_plist(hid_t group_id)
Purpose:
Gets a group creation property list identifier.
Description:
H5Gget_create_plist returns an identifier for the group creation property list associated with the group specified by group_id.

The creation property list identifier should be released with H5Pclose.

Parameters:
Returns:
Returns an identifier for the group’s creation property list if successful. Otherwise returns a negative value.
Fortran90 Interface: h5gget_create_plist_f
SUBROUTINE h5gget_create_plist_f(grp_id, gcpl_id, hdferr)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN)  :: grp_id  ! Group identifier
  INTEGER(HID_T), INTENT(OUT) :: gcpl_id ! Property list for group creation
  INTEGER, INTENT(OUT) :: hdferr         ! Error code 
                                         ! 0 on success and -1 on failure
END SUBROUTINE h5gget_create_plist_f
History: