cellHasFlag method

bool cellHasFlag(
  1. int index,
  2. int flag
)
override

Implementation

bool cellHasFlag(int index, int flag) {
  if (index >= _maxCols) {
    return false;
  }
  return cellGetFlags(index) & flag != 0;
}