/**
  * Load an array of DleTags objects,
  * by Tag Index(es)
  * @param string $strTag
  * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query
  * @return DleTags[]
  */
 public static function LoadArrayByTag($strTag, $objOptionalClauses = null)
 {
     // Call DleTags::QueryArray to perform the LoadArrayByTag query
     try {
         return DleTags::QueryArray(QQ::Equal(QQN::DleTags()->Tag, $strTag), $objOptionalClauses);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
 }