API Reference

Class

MarkdownNativeBlockSnapshot

Namespace OfficeIMO.Markdown
Assembly OfficeIMO.Markdown
Modifiers sealed

UI-safe snapshot of a native block.

Inheritance

  • Object
  • MarkdownNativeBlockSnapshot

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Properties

public String Id { get; set; } #

Stable block id.

public MarkdownNativeBlockKind Kind { get; set; } #

Native block kind.

public MarkdownNativeSourceSpanSnapshot SourceSpan { get; set; } #

Source span snapshot when available.

public String Text { get; set; } #

Common text payload when the block exposes one.

public String Markdown { get; set; } #

Common markdown payload when the block exposes one.

public IReadOnlyDictionary<String, String> Fields { get; set; } #

String fields for block-specific metadata.

public IReadOnlyList<MarkdownNativeInlineSnapshot> Inlines { get; set; } #

Inline snapshots owned directly by this block.

public IReadOnlyList<MarkdownNativeBlockSnapshot> Children { get; set; } #

Nested child block snapshots.

public IReadOnlyList<MarkdownNativeListItemSnapshot> Items { get; set; } #

List item snapshots for native list blocks.

public IReadOnlyList<MarkdownNativeTableCellSnapshot> HeaderCells { get; set; } #

Table header cell snapshots.

public IReadOnlyList<IReadOnlyList<MarkdownNativeTableCellSnapshot>> Rows { get; set; } #

Table body row snapshots.