The Aspose.Words.Layout namespace provides classes that allow to access information such as on what page and where on a page particular document elements are positioned, when the document is formatted into pages.
Classes | |
interface | IPageLayoutCallback |
Implement this interface if you want to have your own custom method called during build and rendering of page layout model. More... | |
class | LayoutCollector |
This class allows to compute page numbers of document nodes. To learn more, visit the Converting to Fixed-page Format documentation article. More... | |
class | LayoutEnumerator |
Enumerates page layout entities of a document. You can use this class to walk over the page layout model. Available properties are type, geometry, text and page index where entity is rendered, as well as overall structure and relationships. Use combination of GetEntity() and Current move to the entity which corresponds to a document node. To learn more, visit the Converting to Fixed-page Format documentation article. More... | |
class | LayoutOptions |
Holds the options that allow controlling the document layout process. To learn more, visit the Converting to Fixed-page Format documentation article. More... | |
class | PageLayoutCallbackArgs |
An argument passed into Notify()To learn more, visit the Converting to Fixed-page Format documentation article. More... | |
class | RevisionOptions |
Allows to control how document revisions are handled during layout process. To learn more, visit the Converting to Fixed-page Format documentation article. More... | |
Enumerations | |
enum class | CommentDisplayMode |
Specifies the rendering mode for document comments. More... | |
enum class | ContinuousSectionRestart |
Represents different behaviors when computing page numbers in a continuous section that restarts page numbering. More... | |
enum class | LayoutEntityType |
Types of the layout entities. More... | |
enum class | PageLayoutEvent |
A code of event raised during page layout model build and rendering. Page layout model is built in two steps. First, "conversion step", this is when page layout pulls document content and creates object graph. Second, "reflow step", this is when structures are split, merged and arranged into pages. Depending of the operation which triggered build, page layout model may or may not be further rendered into fixed page format. For example, computing number of pages in the document or updating fields does not require rendering, whereas export to Pdf does. More... | |
enum class | RevisionColor |
Allows to specify color of document revisions. More... | |
enum class | RevisionTextEffect |
Allows to specify decoration effect for revisions of document text. More... | |
enum class | ShowInBalloons |
Specifies which revisions are rendered in balloons. More... | |
|
strong |
Specifies the rendering mode for document comments.
Shows how to show comments when saving a document to a rendered format.
|
strong |
Represents different behaviors when computing page numbers in a continuous section that restarts page numbering.
Shows how to control page numbering in a continuous section.
|
strong |
Types of the layout entities.
Shows ways of traversing a document's layout entities.
Enumerator | |
---|---|
None | Default value. |
Page | Represents page of a document. Page may have Column, HeaderFooter and Comment child entities. |
Column | Represents a column of text on a page. Column may have the same child entities as Cell, plus Footnote, Endnote and NoteSeparator entities. |
Row | Represents a table row. Row may have Cell as child entities. |
Cell | Represents a table cell. Cell may have Line and Row child entities. |
Line | Represents line of characters of text and inline objects. Line may have Span child entities. |
Span | Represents one or more characters in a line. This include special characters like field start/end markers, bookmarks and comments. Span may not have child entities. |
Footnote | Represents placeholder for footnote content. Footnote may have Note child entities. |
Endnote | Represents placeholder for endnote content. Endnote may have Note child entities. |
Note | Represents placeholder for note content. Note may have Line and Row child entities. |
HeaderFooter | Represents placeholder for header/footer content on a page. HeaderFooter may have Line and Row child entities. |
TextBox | Represents text area inside of a shape. Textbox may have Line and Row child entities. |
Comment | Represents placeholder for comment content. Comment may have Line and Row child entities. |
NoteSeparator | Represents footnote/endnote separator. NoteSeparator may have Line and Row child entities. |
|
strong |
A code of event raised during page layout model build and rendering. Page layout model is built in two steps. First, "conversion step", this is when page layout pulls document content and creates object graph. Second, "reflow step", this is when structures are split, merged and arranged into pages. Depending of the operation which triggered build, page layout model may or may not be further rendered into fixed page format. For example, computing number of pages in the document or updating fields does not require rendering, whereas export to Pdf does.
Shows how to track layout changes with a layout callback.
Enumerator | |
---|---|
None | Default value. |
WatchDog | Corresponds to a checkpoint in code which is often visited and which is suitable to abort process. While inside Notify() throw custom exception to abort process. You can throw when handling any callback event to abort process. Note that if process is aborted the page layout model remains in undefined state. If process is aborted upon reflow of a complete page, however, it should be possible to use layout model up to the end of that page. |
BuildStarted | Build of the page layout has started. Fired once. This is the first event which occurs when UpdatePageLayout is called. |
BuildFinished | Build of the page layout has finished. Fired once. This is the last event which occurs when UpdatePageLayout is called. |
ConversionStarted | Conversion of document model to page layout has started. Fired once. This occurs when layout model starts pulling document content. |
ConversionFinished | Conversion of document model to page layout has finished. Fired once. This occurs when layout model stops pulling document content. |
ReflowStarted | Reflow of the page layout has started. Fired once. This occurs when layout model starts reflowing document content. |
ReflowFinished | Reflow of the page layout has finished. Fired once. This occurs when layout model stops reflowing document content. |
PartReflowStarted | Reflow of the page has started. Note that page may reflow multiple times and that reflow may restart before it is finished. |
PartReflowFinished | Reflow of the page has finished. Note that page may reflow multiple times and that reflow may restart before it is finished. |
PartRenderingStarted | Rendering of page has started. This is fired once per page. |
PartRenderingFinished | Rendering of page has finished. This is fired once per page. |
|
strong |
Allows to specify color of document revisions.
Shows how to alter the appearance of revisions in a rendered output document.
|
strong |
Allows to specify decoration effect for revisions of document text.
Shows how to modify the appearance of revisions.
Enumerator | |
---|---|
None | Revised content has no special effects applied. This corresponds to NoHighlight. |
Color | Revised content is highlighted with color only. |
Bold | Revised content is made bold and colored. |
Italic | Revised content is made italic and colored. |
Underline | Revised content is underlined and colored. |
DoubleUnderline | Revised content is double underlined and colored. |
StrikeThrough | Revised content is stroked through and colored. |
DoubleStrikeThrough | Revised content is double stroked through and colored. |
Hidden | Revised content is hidden. |
|
strong |
Specifies which revisions are rendered in balloons.
Shows how to modify the appearance of revisions.