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