resolvePdfTextAlign property

TextAlign resolvePdfTextAlign

Implementation

pw.TextAlign get resolvePdfTextAlign {
  return this == 'center'
      ? pw.TextAlign.center
      : this == 'right'
          ? pw.TextAlign.right
          : this == 'justify'
              ? pw.TextAlign.justify
              : pw.TextAlign.left;
}