markContentBegin method

void markContentBegin(
  1. PdfName tag
)

Implementation

void markContentBegin(PdfName tag) {
  assert(() {
    if (_page.pdfDocument.verbose) {
      _buf.putComment('markContentBegin');
    }
    return true;
  }());

  tag.output(_buf);
  _buf.putString(' BMC\n');
}