Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_UNREGISTER

Removes a property from a property list class

Procedure:

H5P_UNREGISTER ( class, name )

Signature:

herr_t H5Punregister(
                  H5P_class_t class,
                  const char *name
        )
  

Fortran90 Interface: h5punregister_f
    
SUBROUTINE h5punregister_f(class, name, hdferr)
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: class  ! Property list class identifier
  CHARACTER(LEN=*), INTENT(IN) :: name ! Name of property to remove
  INTEGER, INTENT(OUT) :: hdferr       ! Error code
                                       ! 0 on success and -1 on failure
END SUBROUTINE h5punregister_f

Parameters:
H5P_class_t class    IN: Property list class from which to remove permanent property
const char *nameIN: Name of property to remove

Description:

H5P_UNREGISTER removes a property from a property list class.

Future property lists created of that class will not contain this property; existing property lists containing this property are not affected.

Returns:

Success: a non-negative value

Failure: a negative value

Example:

Coming Soon!

History:

 

--- Last Modified: August 12, 2019 | 12:26 PM