Skip Navigation Links.

H5TB..::..getFieldInfo Method

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

Syntax

Visual Basic
Public Shared Function getFieldInfo ( _
	loc As H5LocId, _
	tableName As String _
) As TableFieldInfo
C#
public static TableFieldInfo getFieldInfo(
	H5LocId loc,
	string tableName
)
Visual C++
public:
static TableFieldInfo^ getFieldInfo(
	H5LocId^ loc, 
	String^ tableName
)
JavaScript
HDF5DotNet.H5TB.getFieldInfo = function(loc, tableName);

Parameters

loc
Type: HDF5DotNet..::..H5LocId
IN: Identifier of the file or group to read the table within.
tableName
Type: String
IN: The name of the dataset to read.

Return Value

An instance of TableFieldInfo containing the table field information.

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TBgetFieldInfoException throws H5TBgetFieldInfoException on failure.

See Also