Skip Navigation Links.

H5D..::..setExtent Method

Changes the sizes of a dataset’s dimensions. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5D.html#Dataset-SetExtent

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

Syntax

Visual Basic
Public Shared Sub setExtent ( _
	dataSetId As H5DataSetId, _
	size As Long() _
)
C#
public static void setExtent(
	H5DataSetId dataSetId,
	long[] size
)
Visual C++
public:
static void setExtent(
	H5DataSetId^ dataSetId, 
	array<long long>^ size
)
JavaScript
HDF5DotNet.H5D.setExtent = function(dataSetId, size);

Parameters

dataSetId
Type: HDF5DotNet..::..H5DataSetId
In: Identifier of a dataset.
size
Type: array<Int64>[]()[][]
In: Array containing the new magnitude of each dimension of the dataset.

See Also