API Reference
Cmdlet
Add-OfficeWordTabStop
Adds a tab stop to a Word paragraph.
Remarks
Thin wrapper over OfficeIMO.Word paragraph tab stops.
Examples
Add a decimal tab stop.
PS>
Add-OfficeWordParagraph { Add-OfficeWordTabStop -Position 4320 -Alignment Decimal -Leader Dot }
Adds a decimal tab stop at three inches.
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-OfficeWordTabStop [-Alignment <Left>] [-Leader <Dot|Hyphen|Underscore|Heavy|MiddleDot>] [-Paragraph <WordParagraph>] [-PassThru] -Position <Int32> [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Alignment String
- Tab alignment.
- Possible values:
Left,Center,Right,Decimal,Bar,Clear - Leader String
- Leader character.
- Possible values:
Dot,Hyphen,Underscore,Heavy,MiddleDot - Paragraph WordParagraph
- Paragraph to update.
- PassThru SwitchParameter
- Emit the created tab stop.
- Position Int32
- Tab position in twips.
Outputs
OfficeIMO.Word.WordTabStop