Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5TBA_GET_TITLE

Reads a table's title

Procedure:

H5TBA_GET_TITLE ( loc_id, table_title )

Signature:

herr_t H5TBAget_title(hid_t loc_id, char *table_title)

Replace this text with the Fortran function signature

Parameters:
hid_t loc_idIN: Location identifier of table
char * table_titleOUT: Buffer for title name

Description:

H5TBA_GET_TITLE returns the title of the table identified by loc_id in a buffer table_title.

Returns:

Returns 0 on success and -1 on failure.

Example:
              char tabletitle[256];
              ...
              
              file_id = H5Fopen (FILENAME, H5F_ACC_RDWR, H5P_DEFAULT);
              dataset_id = H5Dopen (file_id, TABLE_NAME, H5P_DEFAULT);
              
              status = H5TBAget_title (dataset_id, tabletitle);
            

History:

 

--- Last Modified: June 23, 2020 | 01:32 PM