Project

ImagePlayground

Automate image processing, codes, metadata, charts, topology, and visual stories from PowerShell.

Stars 100
Forks 7
Total downloads 712,347
Release ImagePlayground-PowerShellModule.v3.2.7
Language: C# Updated: 2026-08-25

API Reference

Command

New-ImageTableBlock

Namespace ImagePlayground
Inputs
None
Outputs
ChartForgeX.VisualBlocks.ChartTable

Creates a visual table block.

Remarks

Rows can be arrays, hashtables, or PowerShell objects whose property names match the requested columns.

Examples

Authored help example

Create a service status table

PS>


New-ImageTableBlock -Title 'Services' -Column Name,Status -Row @{Name='API';Status='Healthy'},@{Name='Database';Status='Warning'} -Dense
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-ImageTableBlock -Column <String[]> [-Dense] [-NoHeader] [-NoRowStriping] -Row <Object[]> [-StatusColumn <String>] [-Subtitle <String>] [-Theme <Default>] [-Title <String>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Column String[] requiredposition: 0pipeline: False
Column headers.
Dense SwitchParameter optionalposition: namedpipeline: False
Use compact row spacing.
NoHeader SwitchParameter optionalposition: namedpipeline: False
Hide the table header.
NoRowStriping SwitchParameter optionalposition: namedpipeline: False
Disable alternating row surfaces.
Row Object[] requiredposition: 1pipeline: False
Rows represented as arrays, dictionaries, or PowerShell objects.
StatusColumn String optionalposition: namedpipeline: False
Column that contains semantic status values.
Subtitle String optionalposition: namedpipeline: False
Optional block subtitle.
Theme ChartTheme optionalposition: namedpipeline: Falsevalues: 14
ChartForgeX theme.
Possible values: Default, Dark, Light, Colorblind, Aurora, Editorial, Candy, PeopleInfographic, Terminal, TransparentOverlayDark, Minimal, DashboardLight, SaasDashboardLight, RestaurantDashboardLight
Title String optionalposition: namedpipeline: False
Optional block title.

Outputs

ChartForgeX.VisualBlocks.ChartTable