HtmlForgeX

API Reference

Enum

EnumerableSummaryMode

Namespace HtmlForgeX
Assembly HtmlForgeX
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

Controls how enumerable values are summarized into a single cell string.

Inheritance

  • Enum
  • EnumerableSummaryMode

Values

public const EnumerableSummaryMode Count #

Show the number of items (e.g., "5 item(s)").

Value: 0
public const EnumerableSummaryMode FirstN #

Show the first N items (e.g., "a, b, c (+2 more)").

Value: 1
public const EnumerableSummaryMode JoinStrings #

Join all items' ToString() with a separator (capped by MaxProbe).

Value: 2