lineIntent property
PdfLineIntent
get
lineIntent
Gets the line intent of the annotation.
Implementation
PdfLineIntent get lineIntent =>
PdfAnnotationHelper.getHelper(this).isLoadedAnnotation
? _helper._obtainLineIntent()
: _lineIntent;
set
lineIntent
(PdfLineIntent value)
Sets the line intent of the annotation.
Implementation
set lineIntent(PdfLineIntent value) {
final PdfAnnotationHelper helper = PdfAnnotationHelper.getHelper(this);
if (!helper.isLoadedAnnotation) {
_lineIntent = value;
} else {
helper.dictionary!.setName(
PdfName(PdfDictionaryProperties.it), helper.getEnumName(value));
}
}