IReadableBitmapDataGetMovableRow Method

Gets an IReadableBitmapDataRowMovable instance representing the row of the specified y coordinate in the current IReadableBitmapData. Unlike the indexer, this method always allocates a new instance.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
IReadableBitmapDataRowMovable GetMovableRow(
	int y
)

Parameters

y  Int32
The y-coordinate of the row to obtain.

Return Value

IReadableBitmapDataRowMovable
An IReadableBitmapDataRowMovable representing the row of the specified y coordinate in the current IReadableBitmapData.

Exceptions

ObjectDisposedExceptionThis IReadableBitmapData has already been disposed.
ArgumentOutOfRangeExceptiony is less than zero or is greater than or equal to Height.

See Also