isRTL property
bool
get
isRTL
returns true
is this sheet is right-to-left
other-wise false
Implementation
bool get isRTL {
return _isRTL;
}
set
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;
}