Table of Contents

Class ActivityColumnSpec

Namespace
ItTiger.TigerCli.Tui.Activity
Assembly
ItTiger.TigerCli.dll
Immutable column definition for an ActivityDialogSpec: an optional fixed Width (mutually exclusive with Star), default cell Alignment, and an optional default Style. The activity control maps each column onto a real CliGrid column; CliGrid owns the actual width resolution.
public sealed class ActivityColumnSpec
Inheritance
ActivityColumnSpec
Inherited Members

Properties

Align

Default horizontal alignment for cells in this column, or null when unset (so the spec default, then the built-in fallback, applies).
public CliTextAlignment? Align { get; }

Property Value

CliTextAlignment?

Padding

Optional default cell padding for this column, or null when unset. A cell's own padding overrides this. Resolved through the normal CliGrid cell-style cascade.
public CliCellPadding? Padding { get; }

Property Value

CliCellPadding?

Sizing

How the column is sized after content sizing (Star absorbs the remainder).
public CliColumnSizing Sizing { get; }

Property Value

CliColumnSizing

Style

Optional default theme style for cells in this column.
public ThemeStyle? Style { get; }

Property Value

ThemeStyle?

Width

Fixed column width in cells, or null for content/star sizing.
public int? Width { get; }

Property Value

int?