pen property

PdfPen pen

Gets a pen that will be used to draw the element.

Implementation

PdfPen get pen {
  _helper.pen ??= PdfPens.black;
  return _helper.pen!;
}
void pen=(PdfPen value)

Sets a pen that will be used to draw the element.

Implementation

set pen(PdfPen value) {
  _helper.pen = value;
}