HtmlForgeX

API Reference

Enum

TablerRowPackingMode

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

Typed packing presets for AutoFit rows so callers can choose how width is distributed without reasoning about the lower-level AutoFit engine and policy combination.

Inheritance

  • Enum
  • TablerRowPackingMode

Values

public const TablerRowPackingMode Natural #

Use equal-width CSS grid tracks. Wrapped rows keep the same rhythm as the first row.

Value: 0
public const TablerRowPackingMode FillLastRow #

Use flex packing so wrapped rows fill the available width more evenly (for example a five-card strip can become 3 + 2 instead of 4 + 1).

Value: 1
public const TablerRowPackingMode RetainTrackWidths #

Keep fixed track widths on wrap and allow the trailing area to remain open.

Value: 2
public const TablerRowPackingMode OneLineOnWide #

Prefer a single line on very wide screens while still filling wrapped rows on smaller widths.

Value: 3