ICustomBitmapDataRow Interface

Represents a low-level custom accessor to a bitmap data row.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
C#
public interface ICustomBitmapDataRow

Properties

BitmapData Gets the corresponding IBitmapData of this row.
Index Gets the index of the current row. Can fall between zero and Height of the owner BitmapData (exclusive upper bound).

Methods

GetRefAsT Gets a reference to a value interpreted as T within the current row at the specified x index.
UnsafeGetRefAsT Gets a reference to a value interpreted as T within the current row at the specified x index. This method is similar to GetRefAsT(Int32) but it does not check whether x is valid for RowSize and the size of T. It may provide a better performance but if x is invalid, then memory can be either corrupted or an AccessViolationException can be thrown.

See Also