MarkupWriter.WriteBlockquote Method

Namespace
Kampute.DocToolkit.IO.Writers
Assembly
  • Kampute.DocToolkit.dll
MarkupWriter.WriteBlockquote(Action<MarkupWriter>)Writes a blockquote in the format of the target document using an optional delegate to write the content.
MarkupWriter.WriteBlockquote(string)Writes a blockquote in the format of the target document using the specified text.

MarkupWriter.WriteBlockquote(Action<MarkupWriter>)

Writes a blockquote in the format of the target document using an optional delegate to write the content.
public abstract void WriteBlockquote(Action<MarkupWriter> contentHandler)

Parameters

contentHandler Action<MarkupWriter>
The action to write the content of the blockquote.

MarkupWriter.WriteBlockquote(string)

Writes a blockquote in the format of the target document using the specified text.
public void WriteBlockquote(string text)

Parameters

text string
The text of the blockquote.