appearance property

PdfAppearance appearance

Gets appearance of the annotation.

Implementation

PdfAppearance get appearance {
  _helper.appearance ??= PdfAppearance(this);
  return _helper.appearance!;
}
void appearance=(PdfAppearance value)

Sets appearance of the annotation.

Implementation

set appearance(PdfAppearance value) {
  _helper.appearance = value;
}