getPaperSize method

String getPaperSize()

Return the default PaperSize information in this locale.

Implementation

String getPaperSize() {
  final String jscode1 = 'new LocaleInfo("$locale").getPaperSize()';
  final String result = ILibJS.instance.evaluate(jscode1).stringResult;
  return result;
}