/// <devdoc> /// <para>[To be supplied.]</para> /// </devdoc> protected override bool OnTagRender(string name, HtmlTextWriterTag key) { // handle any tags that do not work downlevel SetTagSupports(); if (Supports(FONT_PROPAGATE)) { FontStack.Push(new FontStackItem()); } // div->table substitution. // Make tag look like a table. This must be done after we establish tag support. if (key == HtmlTextWriterTag.Div && ShouldPerformDivTableSubstitution) { TagKey = HtmlTextWriterTag.Table; } return(base.OnTagRender(name, key)); }
public void PushInlineSetting(PPTXInlineSetting InlieSetting) { FontStack.Push(InlieSetting.Font); }
public void PushBlockSetting(PPTXBlockSetting BlockSetting) { this.BlockSetting = BlockSetting; FontStack.Push(BlockSetting.Font); }