Skip Navigation Links.

H5A..::..Delete Method

Deletes an attribute from a specified location. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5A.html#Annot-Delete

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

Syntax

Visual Basic
Public Shared Sub Delete ( _
	objectId As H5ObjectWithAttributes, _
	attributeName As String _
)
C#
public static void Delete(
	H5ObjectWithAttributes objectId,
	string attributeName
)
Visual C++
public:
static void Delete(
	H5ObjectWithAttributes^ objectId, 
	String^ attributeName
)
JavaScript
HDF5DotNet.H5A.delete = function(objectId, attributeName);

Parameters

objectId
Type: HDF5DotNet..::..H5ObjectWithAttributes
IN: Identifier of the dataset, group, or named datatype to have the attribute deleted from.
attributeName
Type: String
IN: Name of the attribute to delete.

Return Value

void

Exceptions

ExceptionCondition
HDF5DotNet..::..H5ADeleteException throws H5ADeleteException on failure.

See Also