isRTL property

bool isRTL

returns true is this sheet is right-to-left other-wise false

Implementation

bool get isRTL {
  return _isRTL;
}
void isRTL=(bool _u)

set sheet-object to true for making it right-to-left otherwise false

Implementation

set isRTL(bool _u) {
  _isRTL = _u;
  _excel._rtlChangeLookup = sheetName;
}