Skip Navigation Links.

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

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, _
	propertyList As H5PropertyListId _
) As H5AttributeId
C#
public static H5AttributeId open(
	H5ObjectWithAttributes objectWithAttributes,
	string attributeName,
	H5PropertyListId propertyList
)
Visual C++
public:
static H5AttributeId^ open(
	H5ObjectWithAttributes^ objectWithAttributes, 
	String^ attributeName, 
	H5PropertyListId^ propertyList
)
JavaScript
HDF5DotNet.H5A.open = function(objectWithAttributes, attributeName, propertyList);

Parameters

objectWithAttributes
Type: HDF5DotNet..::..H5ObjectWithAttributes
IN: Identifer for object to which attribute is attached
attributeName
Type: String
IN: Name of attribute to open
propertyList
Type: HDF5DotNet..::..H5PropertyListId
IN: Attribute access property list

Return Value

H5AttributeId associated with the opened attribute.

Exceptions

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

See Also