Skip Navigation Links.

H5T..::..getSign Method (H5DataTypeId)

Retrieves the sign type for an integer type. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5T.html#Datatype-GetSign

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

Syntax

Visual Basic
Public Shared Function getSign ( _
	typeId As H5DataTypeId _
) As H5T..::..Sign
C#
public static H5T..::..Sign getSign(
	H5DataTypeId typeId
)
Visual C++
public:
static H5T..::..Sign getSign(
	H5DataTypeId^ typeId
)
JavaScript
HDF5DotNet.H5T.getSign = function(typeId);

Parameters

typeId
Type: HDF5DotNet..::..H5DataTypeId
IN: Identifier of datatype to query.

Return Value

Returns an H5T.Sign that indicates the sign. Possible results include H5T.Sign.UNSIGNED and H5T.Sign.TWOS_COMPLEMENT

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TgetSizeException throws H5TgetSignException on failure.

See Also