protected function newControl()
 {
     $control = new AphrontFormTextAreaControl();
     if ($this->getMonospaced()) {
         $control->setCustomClass('PhabricatorMonospaced');
     }
     $height = $this->getHeight();
     if ($height) {
         $control->setHeight($height);
     }
     return $control;
 }