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

New-TableEvent

Namespace PSWriteHTML

Creates a new table event object.

Remarks

This function creates a new table event object with the specified parameters.

Examples

Authored help example

EXAMPLE 1


New-TableEvent -TableID "Table1" -SourceColumnName "Column1" -TargetColumnID 1 -SourceColumnID 2
        

Creates a new table event object for Table1 with SourceColumnName "Column1", TargetColumnID 1, and SourceColumnID 2.

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-TableEvent [-SourceColumnID <Nullable`1>] [-SourceColumnName <String>] [-TableID <String>] [-TargetColumnID <Nullable`1>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

SourceColumnID Nullable`1 optionalposition: 3pipeline: False
Specifies the ID of the source column.
SourceColumnName String optionalposition: 1pipeline: False
Specifies the name of the source column.
TableID String optionalposition: 0pipeline: Falsealiases: ID
Specifies the ID of the table.
TargetColumnID Nullable`1 optionalposition: 2pipeline: False
Specifies the ID of the target column.