/// <summary>
 /// Sets the tag value.
 /// </summary>
 /// <param name="element">The element.</param>
 /// <param name="fullTagValue">The full tag value.</param>
 protected static void SetTagValue(SdtElement element, string fullTagValue)
 {
     // Set the tag for the content control
     if (!string.IsNullOrEmpty(fullTagValue))
     {
         OpenXmlHelper.SetTagValue(element, fullTagValue);
     }
 }