Skip Navigation Links.

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

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

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

Syntax

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

Parameters

objectId
Type: HDF5DotNet..::..H5ObjectWithAttributes
IN: Location or object identifier; may be dataset or group
objectName
Type: String
IN: Name of object, relative to location, from which attribute is to be removed
attributeName
Type: String
IN: Name of attribute to delete
linkAccessPropertyListId
Type: HDF5DotNet..::..H5PropertyListId
IN: Link access property list

Return Value

void

Exceptions

ExceptionCondition
HDF5DotNet..::..H5AdeleteByNameException throws H5AdeleteByNameException on failure.

See Also