Array3DTSlice(Int32, Int32) Method

Gets a new Array3DT instance, which represents a subrange of planes of the current instance indicated by the specified startPlaneIndex and planeCount.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public Array3D<T> Slice(
	int startPlaneIndex,
	int planeCount
)

Parameters

startPlaneIndex  Int32
The offset that points to the first plane of the returned Array3DT.
planeCount  Int32
The desired number of planes of the returned Array3DT.

Return Value

Array3DT
The subrange of planes of the current Array3DT instance indicated by the specified startPlaneIndex and planeCount.

See Also