/**
  * Updates this object's CompiledHtml field with the content stored in the Content field,
  * using QTextStyle.
  * 
  * This method does NOT call save on the object, it only updates the field.
  * @return void
  */
 public function CompileHtml()
 {
     $this->strCompiledHtml = QTextStyle::DisplayAsHtml($this->strContent);
 }
 public function RefreshCompiledHtml()
 {
     $this->strCompiledHtml = QTextStyle::DisplayAsHtml($this->strMessage);
 }