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