FlowDocument

Concrete implementation of IFlowDocument using a `

Constructors

this
this(IRenderingContext2D renderer, StyleOptions options)

A FlowDocument needs an already created renderer, and style options.

Members

Functions

br
void br()
Undocumented in source. Be warned that the author may not have intended to support it.
checkPageEnded
void checkPageEnded()
Undocumented in source. Be warned that the author may not have intended to support it.
enterB
void enterB()
Undocumented in source. Be warned that the author may not have intended to support it.
enterCode
void enterCode()
Undocumented in source. Be warned that the author may not have intended to support it.
enterEm
void enterEm()
Undocumented in source. Be warned that the author may not have intended to support it.
enterH1
void enterH1()
Undocumented in source. Be warned that the author may not have intended to support it.
enterH2
void enterH2()
Undocumented in source. Be warned that the author may not have intended to support it.
enterH3
void enterH3()
Undocumented in source. Be warned that the author may not have intended to support it.
enterH4
void enterH4()
Undocumented in source. Be warned that the author may not have intended to support it.
enterH5
void enterH5()
Undocumented in source. Be warned that the author may not have intended to support it.
enterH6
void enterH6()
Undocumented in source. Be warned that the author may not have intended to support it.
enterI
void enterI()
Undocumented in source. Be warned that the author may not have intended to support it.
enterImage
void enterImage(const(char)[] relativePath)
Undocumented in source. Be warned that the author may not have intended to support it.
enterListItem
void enterListItem()
Undocumented in source. Be warned that the author may not have intended to support it.
enterOrderedList
void enterOrderedList()
Undocumented in source. Be warned that the author may not have intended to support it.
enterParagraph
void enterParagraph()
Undocumented in source. Be warned that the author may not have intended to support it.
enterPre
void enterPre()
Undocumented in source. Be warned that the author may not have intended to support it.
enterStrong
void enterStrong()
Undocumented in source. Be warned that the author may not have intended to support it.
enterUnorderedList
void enterUnorderedList()
Undocumented in source. Be warned that the author may not have intended to support it.
exitB
void exitB()
Undocumented in source. Be warned that the author may not have intended to support it.
exitCode
void exitCode()
Undocumented in source. Be warned that the author may not have intended to support it.
exitEm
void exitEm()
Undocumented in source. Be warned that the author may not have intended to support it.
exitH1
void exitH1()
Undocumented in source. Be warned that the author may not have intended to support it.
exitH2
void exitH2()
Undocumented in source. Be warned that the author may not have intended to support it.
exitH3
void exitH3()
Undocumented in source. Be warned that the author may not have intended to support it.
exitH4
void exitH4()
Undocumented in source. Be warned that the author may not have intended to support it.
exitH5
void exitH5()
Undocumented in source. Be warned that the author may not have intended to support it.
exitH6
void exitH6()
Undocumented in source. Be warned that the author may not have intended to support it.
exitI
void exitI()
Undocumented in source. Be warned that the author may not have intended to support it.
exitImage
void exitImage()
Undocumented in source. Be warned that the author may not have intended to support it.
exitListItem
void exitListItem()
Undocumented in source. Be warned that the author may not have intended to support it.
exitOrderedList
void exitOrderedList()
Undocumented in source. Be warned that the author may not have intended to support it.
exitParagraph
void exitParagraph()
Undocumented in source. Be warned that the author may not have intended to support it.
exitPre
void exitPre()
Undocumented in source. Be warned that the author may not have intended to support it.
exitStrong
void exitStrong()
Undocumented in source. Be warned that the author may not have intended to support it.
exitUnorderedList
void exitUnorderedList()
Undocumented in source. Be warned that the author may not have intended to support it.
finalize
void finalize()
Undocumented in source. Be warned that the author may not have intended to support it.
pageSkip
void pageSkip()
Undocumented in source. Be warned that the author may not have intended to support it.
text
void text(const(char)[] s)
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From IFlowDocument

text
void text(const(char)[] s)

Output text.

br
void br()

Line break.

pageSkip
void pageSkip()

Next page.

enterH1
void enterH1()

Enter <h1> title.

exitH1
void exitH1()

Exit </h1> title.

enterH2
void enterH2()

Enter <h2> title.

exitH2
void exitH2()

Exit </h2> title.

enterH3
void enterH3()

Enter <h3> title.

exitH3
void exitH3()

Exit </h3> title.

enterH4
void enterH4()

Enter <h4> title.

exitH4
void exitH4()

Exit </h4> title.

enterH5
void enterH5()

Enter <h5> title.

exitH5
void exitH5()

Exit </h5> title.

enterH6
void enterH6()

Enter <h6> title.

exitH6
void exitH6()

Exit </h6> title.

enterB
void enterB()

Enter <b>.

exitB
void exitB()

Exit </b>.

enterStrong
void enterStrong()

Enter <strong>.

exitStrong
void exitStrong()

Exit </strong>.

enterI
void enterI()

Enter <i>.

exitI
void exitI()

Exit </i>.

enterEm
void enterEm()

Enter <em>.

exitEm
void exitEm()

Exit </em>.

enterParagraph
void enterParagraph()

Enter <p>.

exitParagraph
void exitParagraph()

Exit </p>.

enterPre
void enterPre()

Enter <pre>.

exitPre
void exitPre()

Exit </pre>.

enterCode
void enterCode()

Enter <code>.

exitCode
void exitCode()

Exit </code>.

enterOrderedList
void enterOrderedList()

Enter <ol>.

exitOrderedList
void exitOrderedList()

Exit </ol>.

enterUnorderedList
void enterUnorderedList()

Enter <ul>.

exitUnorderedList
void exitUnorderedList()

Exit </ul>.

enterListItem
void enterListItem()

Enter <li>.

exitListItem
void exitListItem()

Exit </li>.

enterImage
void enterImage(const(char)[] relativePath)

Enter <img>.

exitImage
void exitImage()

Exit </img>.

finalize
void finalize()

You MUST make that call before getting the bytes output of the renderer. No subsequent can be made with that IFlowDocument.

Meta