Exemplo n.º 1
0
 /// <summary>Visits the provided <paramref name="heading4"/> element.</summary>
 /// <param name="heading4">The <see cref="Heading4Element"/> to visit.</param>
 protected internal abstract void Visit(Heading4Element heading4);
Exemplo n.º 2
0
 /// <summary>Visits the provided <paramref name="heading4"/> element.</summary>
 /// <param name="heading4">The <see cref="Heading4Element"/> to visit.</param>
 protected internal override void Visit(Heading4Element heading4)
 {
     BeginElement("h4");
     Write(heading4.Text);
     EndElementWithoutIndent();
 }