IPod.ArtworkFormat.ArtworkFormat C# (CSharp) Method

ArtworkFormat() public method

public ArtworkFormat ( ArtworkUsage usage, short width, short height, short correlationId, int size, PixelFormat pformat, short rotation ) : System
usage ArtworkUsage
width short
height short
correlationId short
size int
pformat PixelFormat
rotation short
return System
        public ArtworkFormat(ArtworkUsage usage, short width, short height, short correlationId,
            int size, PixelFormat pformat, short rotation)
        {
            this.usage = usage;
            this.width = width;
            this.height = height;
            this.correlationId = correlationId;
            this.size = size;
            this.pformat = pformat;
            this.rotation = rotation;
        }