Example #1
0
		protected string ProcessBoolItemHeaderVisibleSection(ItemHeaderVisible itemheadervisible, string template)
		{
			string sectionStartTag;
			string sectionEndTag;
			string sectionTag;
			string sectionValue;
				
			#region Bool Section Processing

            #region Get Section Tag/Value

			sectionStartTag = "{{#IsInActive}}";
			sectionEndTag = "{{/IsInActive}}";
            sectionTag = TemplateUtil.GetSectionTag(template, sectionStartTag, sectionEndTag);
			sectionValue = sectionTag.Replace(sectionStartTag, "").Replace(sectionEndTag, "");

			#endregion

            #region Bool Section

			if (sectionTag.Trim().Length > 0)
			{
				template = template.Replace(sectionTag, itemheadervisible.IsInActive ? sectionValue : "");
            }

            #endregion

            #endregion
			
			return template;
		}
Example #2
0
		protected string ProcessListItemHeaderVisibleSection(ItemHeaderVisible itemheadervisible, string template)
		{

			return template;
		}