Skip Navigation Links.

H5A..::..openIndex Method (H5ObjectWithAttributes, )

Opens the attribute specified by its index. (deprecated in 1.8) http://www.hdfgroup.org/HDF5/doc/RM/RM_H5A.html#Annot-OpenIdx

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Shared Function openIndex ( _
	objectId As H5ObjectWithAttributes, _
	index As Integer _
) As H5AttributeId
C#
public static H5AttributeId openIndex(
	H5ObjectWithAttributes objectId,
	int index
)
Visual C++
public:
static H5AttributeId^ openIndex(
	H5ObjectWithAttributes^ objectId, 
	int index
)
JavaScript
HDF5DotNet.H5A.openIndex = function(objectId, index);

Parameters

objectId
Type: HDF5DotNet..::..H5ObjectWithAttributes
IN: Identifier of the group, dataset, or named datatype attribute to be attached to.
index
Type: Int32
IN: Index of the attribute to open.

Return Value

Returns attribute identifier

Exceptions

ExceptionCondition
HDF5DotNet..::..H5AopenIndexException throws H5AopenIndexException on failure.

See Also