Skip Navigation Links.

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

Opens an attribute for an object specified by object identifier and attribute name. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5A.html#Annot-Open

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

Syntax

Visual Basic
Public Shared Function open ( _
	objectWithAttributes As H5ObjectWithAttributes, _
	attributeName As String _
) As H5AttributeId
C#
public static H5AttributeId open(
	H5ObjectWithAttributes objectWithAttributes,
	string attributeName
)
Visual C++
public:
static H5AttributeId^ open(
	H5ObjectWithAttributes^ objectWithAttributes, 
	String^ attributeName
)
JavaScript
HDF5DotNet.H5A.open = function(objectWithAttributes, attributeName);

Parameters

objectWithAttributes
Type: HDF5DotNet..::..H5ObjectWithAttributes
IN: Identifer for object to which attribute is attached
attributeName
Type: String
IN: Name of attribute to open

Return Value

H5AttributeId associated with the opened attribute.

Exceptions

ExceptionCondition
HDF5DotNet..::..H5AopenException throws H5AopenException on failure.

See Also