next property
PdfAction?
get
next
Gets the next action to be performed after the action represented by this instance.
Implementation
PdfAction? get next => _helper.action;
set
next
(PdfAction? value)
Sets the next action to be performed after the action represented by this instance.
Implementation
set next(PdfAction? value) {
if (value != null && _helper.action != value) {
_helper.action = value;
_helper.dictionary.setArray(PdfDictionaryProperties.next,
<IPdfPrimitive>[PdfReferenceHolder(_helper.action)]);
}
}