Evotec

Project

PSWriteOffice

PSWriteOffice is an open-source PowerShell and .NET project with packages, release history, and technical documentation.

Stars 144
Forks 12
Open issues 16
PowerShell Gallery downloads 150,904
Release v0.2.0
Language: C# Updated: 2026-04-06

API Reference

Cmdlet

Add-OfficeWordListItem

Namespace PSWriteOffice
Inputs
None
Outputs
System.Object

Adds a single list item.

Remarks

Must be called within Add-OfficeWordList/WordList; supports nesting via -Level.

Examples

Authored help example

Add bullet text.

PS>


WordList { Add-OfficeWordListItem -Text 'First task' }
        

Creates a bullet with the text “First task”.

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

Add-OfficeWordListItem [-Level <Int32>] [-PassThru] [-Text <String>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Level Int32 optionalposition: namedpipeline: False
Zero-based list level.
PassThru SwitchParameter optionalposition: namedpipeline: False
Emit the created WordParagraph.
Text String optionalposition: 0pipeline: False
List item text.

Outputs

System.Object