/**
  * Génère la supression d'une cellule d'un tableau.
  *
  * Crée un fragement de type instruction.
  *
  * @param mixed $pIndex Index de la cellule.
  */
 public function offsetUnset($pIndex)
 {
     $this->_widget->addStatement_('delete ' . $this->toJSON() . '[' . CopixJSONEncoder::encode($pIndex) . ']');
 }