borderColor property
PdfColor
get
borderColor
Gets or sets the color of the border.
The default color is black.
Implementation
PdfColor get borderColor => _helper.borderColor;
set
borderColor
(PdfColor value)
Implementation
set borderColor(PdfColor value) {
_helper.appearance = true;
_helper.borderColor = value;
_helper.assignBorderColor(value);
}