iTextSharp.text.pdf.qrcode.BitMatrix.GetRow C# (CSharp) Метод

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

public GetRow ( int y, BitArray row ) : BitArray
y int
row BitArray
Результат BitArray
        public BitArray GetRow(int y, BitArray row) {
            if (row == null || row.GetSize() < width) {
                row = new BitArray(width);
            }
            int offset = y * rowSize;
            for (int x = 0; x < rowSize; x++) {
                row.SetBulk(x << 5, bits[offset + x]);
            }
            return row;
        }