Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

EmailLayoutColumn

Namespace PSWriteHTML

Defines the layout structure for a column in an email content.

Remarks

This function defines the layout structure for a column in an email content using specified parameters. It allows customization of column layout properties such as width, alignment, padding, and borders.

Examples

Authored help example

EXAMPLE 1


EmailLayoutColumn -Alignment 'Value'
        

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

EmailLayoutColumn [-Alignment <String>] [-BorderBottomColor <String>] [-BorderBottomStyle <hidden>] [-BorderBottomWidthSize <String>] [-BorderLeftColor <String>] [-BorderLeftStyle <hidden>] [-BorderLeftWidthSize <String>] [-BorderRightColor <String>] [-BorderRightStyle <hidden>] [-BorderRightWidthSize <String>] [-BorderTopColor <String>] [-BorderTopStyle <hidden>] [-BorderTopWidthSize <String>] [-ColumnLayout <ScriptBlock>] [-Padding <String>] [-PaddingBottom <String>] [-PaddingLeft <String>] [-PaddingRight <String>] [-PaddingTop <String>] [-Width <String>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Alignment String optionalposition: 2pipeline: False
Specifies the alignment of the content within the column. Valid values are 'left', 'center', 'right', or 'justify'.
BorderBottomColor String optionalposition: 12pipeline: False
Specifies the color of the bottom border.
BorderBottomStyle Object optionalposition: 11pipeline: Falsevalues: 9
Specifies the style of the bottom border. Valid values are 'none', 'hidden', 'dotted', 'dashed', 'solid', 'double', 'groove', 'ridge', 'inset', 'outset'.
Possible values: hidden, dotted, dashed, solid, double, groove, ridge, inset, outset
BorderBottomWidthSize String optionalposition: 13pipeline: False
Specifies the width of the bottom border.
BorderLeftColor String optionalposition: 15pipeline: False
Specifies the color of the left border.
BorderLeftStyle Object optionalposition: 14pipeline: Falsevalues: 9
Specifies the style of the left border. Valid values are 'none', 'hidden', 'dotted', 'dashed', 'solid', 'double', 'groove', 'ridge', 'inset', 'outset'.
Possible values: hidden, dotted, dashed, solid, double, groove, ridge, inset, outset
BorderLeftWidthSize String optionalposition: 16pipeline: False
Specifies the width of the left border.
BorderRightColor String optionalposition: 18pipeline: False
Specifies the color of the right border.
BorderRightStyle Object optionalposition: 17pipeline: Falsevalues: 9
Specifies the style of the right border. Valid values are 'none', 'hidden', 'dotted', 'dashed', 'solid', 'double', 'groove', 'ridge', 'inset', 'outset'.
Possible values: hidden, dotted, dashed, solid, double, groove, ridge, inset, outset
BorderRightWidthSize String optionalposition: 19pipeline: False
Specifies the width of the right border.
BorderTopColor String optionalposition: 9pipeline: False
Specifies the color of the top border.
BorderTopStyle Object optionalposition: 8pipeline: Falsevalues: 9
Specifies the style of the top border. Valid values are 'none', 'hidden', 'dotted', 'dashed', 'solid', 'double', 'groove', 'ridge', 'inset', 'outset'.
Possible values: hidden, dotted, dashed, solid, double, groove, ridge, inset, outset
BorderTopWidthSize String optionalposition: 10pipeline: False
Specifies the width of the top border.
ColumnLayout ScriptBlock optionalposition: 0pipeline: False
Specifies the ScriptBlock containing the content of the column.
Padding String optionalposition: 3pipeline: False
Specifies the padding for all sides of the column.
PaddingBottom String optionalposition: 6pipeline: False
Specifies the padding for the bottom side of the column.
PaddingLeft String optionalposition: 7pipeline: False
Specifies the padding for the left side of the column.
PaddingRight String optionalposition: 5pipeline: False
Specifies the padding for the right side of the column.
PaddingTop String optionalposition: 4pipeline: False
Specifies the padding for the top side of the column.
Width String optionalposition: 1pipeline: False
Specifies the width of the column.