IBitmapDataRowMovable Interface

Represents a single row of an IBitmapData instance that allows setting its position to any row. Reading or writing actual pixels is available via the derived interfaces of this type.
See the Remarks section of the GetReadWriteBitmapData method for details and examples.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 8.1.0
C#
public interface IBitmapDataRowMovable : IBitmapDataRow
Implements
IBitmapDataRow

Properties

Index Gets the index of the current row. Can fall between zero and Height of the owner IBitmapData (exclusive upper bound).
(Inherited from IBitmapDataRow)
Size Gets the size of the row in bytes, or zero, if this IBitmapDataRow instance does not have an actual raw buffer to access.
See the Remarks section of the IBitmapData.RowSize property for details.
(Inherited from IBitmapDataRow)
Width Gets the width of the row in pixels.
(Inherited from IBitmapDataRow)

Methods

MoveNextRow If not already in the last row (Index is less than Height of the owner IBitmapData), then advances the position of the current IBitmapDataRowMovable instance so it points to the next row.
See the Examples section of the GetReadWriteBitmapData method for examples.
MoveToRow Moves the current IBitmapDataRowMovable to the specified row of the underlying IBitmapData.

See Also