iTextSharp.text.pdf.BarcodeDatamatrix.DmParams.DmParams C# (CSharp) Метод

DmParams() приватный Метод

private DmParams ( int height, int width, int heightSection, int widthSection, int dataSize, int dataBlock, int errorBlock ) : System
height int
width int
heightSection int
widthSection int
dataSize int
dataBlock int
errorBlock int
Результат System
            internal DmParams(int height, int width, int heightSection, int widthSection, int dataSize, int dataBlock, int errorBlock) {
                this.height = height;
                this.width = width;
                this.heightSection = heightSection;
                this.widthSection = widthSection;
                this.dataSize = dataSize;
                this.dataBlock = dataBlock;
                this.errorBlock = errorBlock;
            }
BarcodeDatamatrix.DmParams