Skip Navigation Links.

H5S..::..selectElements Method

Selects array elements to be included in the selection for a dataspace. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5S.html#Dataspace-SelectElements IN: Identifier of dataspace selection to modify IN: Operation to perform on current selection. IN: Number of elements to be selected. IN: A serialized copy of a 2-dimensional array of zero-based values specifying the coordinates of the elements in the point selection.

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

Syntax

Visual Basic
Public Shared Sub selectElements ( _
	spaceId As H5DataSpaceId, _
	selectOperator As H5S..::..SelectOperator, _
	numElements As IntPtr, _
	coord As Long() _
)
C#
public static void selectElements(
	H5DataSpaceId spaceId,
	H5S..::..SelectOperator selectOperator,
	IntPtr numElements,
	long[] coord
)
Visual C++
public:
static void selectElements(
	H5DataSpaceId^ spaceId, 
	H5S..::..SelectOperator selectOperator, 
	IntPtr numElements, 
	array<long long>^ coord
)
JavaScript
HDF5DotNet.H5S.selectElements = function(spaceId, selectOperator, numElements, coord);

Parameters

spaceId
Type: HDF5DotNet..::..H5DataSpaceId
selectOperator
Type: HDF5DotNet..::..H5S..::..SelectOperator
numElements
Type: IntPtr
coord
Type: array<Int64>[]()[][]

See Also