flags property

int get flags

Gets the field flags (/Ff).

Implementation

int get flags {
  if (dictionary.containsKey(PdfNameTokens.ff)) {
    final ff = dictionary[PdfNameTokens.ff];
    if (ff is PdfNum) return ff.value.toInt();
  }
  return 0;
}
set flags (int value)

Sets the field flags (/Ff).

Implementation

set flags(int value) {
  dictionary[PdfNameTokens.ff] = PdfNum(value);
}