MarkdownDocumentInfo

MarkdownDocumentInfo structure

Represents metadata of one Markdown document

public struct MarkdownDocumentInfo : IDocumentInfo, IEquatable<MarkdownDocumentInfo>

Properties

Name Description
Format { get; } Returns a format of this Markdown document — always is Md
IsEncrypted { get; } Because Markdown documents cannot be encrypted with password, this property always returns ``false`'
PageCount { get; } Returns number of pages. Markdown documents usually have no fixed pages and thus page count, so this number is calculated from standard page size set to A4 in portrait orientation.
Size { get; } Returns size in bytes of this Markdown document

Methods

Name Description
Equals(MarkdownDocumentInfo) Determines whether this instance is equal to the other specified MarkdownDocumentInfo instance.

See Also