write method

void write(
  1. PdfStream os
)
inherited

Writes the object to the output stream.

Implementation

void write(PdfStream os) {
  prepare();
  _writeStart(os);
  writeContent(os);
  _writeEnd(os);
}