Axiom.Media.PixelConverter.PixelFormatDescription.PixelFormatDescription C# (CSharp) Метод

PixelFormatDescription() публичный Метод

public PixelFormatDescription ( string name, PixelFormat format, byte elemBytes, PixelFormatFlags flags, PixelComponentType componentType, byte componentCount, byte rbits, byte gbits, byte bbits, byte abits, uint rmask, uint gmask, uint bmask, uint amask, byte rshift, byte gshift, byte bshift, byte ashift ) : System
name string
format PixelFormat
elemBytes byte
flags PixelFormatFlags
componentType PixelComponentType
componentCount byte
rbits byte
gbits byte
bbits byte
abits byte
rmask uint
gmask uint
bmask uint
amask uint
rshift byte
gshift byte
bshift byte
ashift byte
Результат System
			public PixelFormatDescription( string name,
										  PixelFormat format,
										  byte elemBytes,
										  PixelFormatFlags flags,
										  PixelComponentType componentType,
										  byte componentCount,
										  byte rbits,
										  byte gbits,
										  byte bbits,
										  byte abits,
										  uint rmask,
										  uint gmask,
										  uint bmask,
										  uint amask,
										  byte rshift,
										  byte gshift,
										  byte bshift,
										  byte ashift )
			{
				this.name = name;
				this.format = format;
				this.elemBytes = elemBytes;
				this.flags = flags;
				this.componentType = componentType;
				this.componentCount = componentCount;
				this.rbits = rbits;
				this.gbits = gbits;
				this.bbits = bbits;
				this.abits = abits;
				this.rmask = rmask;
				this.gmask = gmask;
				this.bmask = bmask;
				this.amask = amask;
				this.rshift = rshift;
				this.gshift = gshift;
				this.bshift = bshift;
                this.ashift = ashift;
			}
PixelConverter.PixelFormatDescription