Aries.IconMethods.IcDvImg.BITMAPINFOHEADER.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
            public override string ToString()
            {
                return string.Format("biSize: {0}, biWidth: {1}, biHeight: {2}, biPlanes: {3}, biBitCount: {4}, biCompression: {5}, biSizeImage: {6}, biXPelsPerMeter: {7}, biYPelsPerMeter {8}, biClrUsed {9}, biClrImportant {10}", new object[] { this.biSize, this.biWidth, this.biHeight, this.biPlanes, this.biBitCount, this.biCompression, this.biSizeImage, this.biXPelsPerMeter, this.biYPelsPerMeter, this.biClrUsed, this.biClrImportant });
            }