/**
  * Static Helper Method to Create using QueryString arguments
  *
  * @param mixed $objParentObject QForm or QPanel which will be using this NarroContextCommentMetaControl
  * @param QMetaControlCreateType $intCreateType rules governing NarroContextComment object creation - defaults to CreateOrEdit
  * @return NarroContextCommentMetaControl
  */
 public static function CreateFromQueryString($objParentObject, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     $intCommentId = QApplication::QueryString('intCommentId');
     return NarroContextCommentMetaControl::Create($objParentObject, $intCommentId, $intCreateType);
 }