Enums/TabelCellBorderType.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<#
/// <summary> /// Table Cell Border Types /// source: http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.tablecellborders.aspx /// </summary> #> enum TableCellBorderType { Top Bottom Left Right InsideH InsideV TopLeftToBottomRight TopRightToBottomLeft } |