示例#1
0
 /**
  * @param XlsFormat $format
  *
  * @return array
  */
 protected function getFlags($format)
 {
     return array('Num' => $format->getNumFormat() != NumberFormat::TYPE_GENERAL ? 1 : 0, 'Fnt' => $format->getFont()->getIndex() != 0 ? 1 : 0, 'Alc' => $format->textWrap ? 1 : 0, 'Bdr' => $format->getBorderStyle('top') || $format->getBorderStyle('right') || $format->getBorderStyle('bottom') || $format->getBorderStyle('left') ? 1 : 0, 'Pat' => $format->fgColor != 0x40 || $format->bgColor != 0x41 || $format->pattern ? 1 : 0, 'Prot' => $format->locked | $format->hidden);
 }