IReadWriteBitmapDataItem Property

Gets an IReadWriteBitmapDataRow representing the row of the specified y coordinate in the current IReadWriteBitmapData. When obtaining the same row repeatedly, then a cached instance is returned. To get a movable row use the GetMovableRow method instead.
See the Examples section of the GetReadWriteBitmapData method for examples.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.1.1
C#
IReadWriteBitmapDataRow this[
	int y
] { get; }

Parameters

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

Return Value

IReadWriteBitmapDataRow
An IReadWriteBitmapDataRow representing the row of the specified y coordinate in the current IReadWriteBitmapData.

Exceptions

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

See Also