System.Drawing.Imaging.BitmapData
Specifies the attributes of a bitmap image. The BitmapData class is used by the LockBits and UnlockBits methods of the Bitmap class. Not inheritable.
namespace System.Drawing.Imaging
{
public sealed class BitmapData
{
public int Height { get; set; }
public PixelFormat PixelFormat { get; set; }
public int Reserved { get; set; }
public IntPtr Scan0 { get; set; }
public int Stride { get; set; }
public int Width { get; set; }
public BitmapData();
}
}