OfficeIMO

API Reference

Command

Add-OfficePowerPointBullets

Namespace PSWriteOffice
Inputs
OfficeIMO.PowerPoint.PowerPointSlide
Outputs
OfficeIMO.PowerPoint.PowerPointTextBox

Adds a bulleted list to a PowerPoint slide.

Remarks

Adds a bulleted list to a PowerPoint slide.

Examples

Add a bullet list.


PS>Add-OfficePowerPointBullets -Slide $slide -Bullets 'Wins','Risks','Next Steps' -X 60 -Y 120 -Width 400 -Height 200
        

Creates a bullet list textbox.

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-OfficePowerPointBullets [-BulletChar <String>] -Bullets <String[]> [-Height <Double>] [-Level <Int32>] [-Slide <PowerPointSlide>] [-Width <Double>] [-X <Double>] [-Y <Double>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

BulletChar String optionalposition: namedpipeline: False
Optional bullet character (defaults to •).
Bullets String[] requiredposition: 0pipeline: False
Bullet items to render.
Height Double optionalposition: namedpipeline: False
Textbox height in points.
Level Int32 optionalposition: namedpipeline: False
List level (0-8).
Slide PowerPointSlide optionalposition: namedpipeline: True (ByValue)
Target slide that will receive the bullet list (optional inside DSL).
Width Double optionalposition: namedpipeline: False
Textbox width in points.
X Double optionalposition: namedpipeline: False
Left offset (in points) from the slide origin.
Y Double optionalposition: namedpipeline: False
Top offset (in points) from the slide origin.

Outputs

OfficeIMO.PowerPoint.PowerPointTextBox