Skip Navigation Links.

H5TB..::..getTableInfo Method

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

Syntax

Visual Basic
Public Shared Function getTableInfo ( _
	loc As H5LocId, _
	tableName As String _
) As TableInfo
C#
public static TableInfo getTableInfo(
	H5LocId loc,
	string tableName
)
Visual C++
public:
static TableInfo^ getTableInfo(
	H5LocId^ loc, 
	String^ tableName
)
JavaScript
HDF5DotNet.H5TB.getTableInfo = 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 TableInfo containing the dimensions.

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TBgetTableInfoException throws H5TBgetTableInfoException on failure.

See Also