Enums/TabelCellBorderType.ps1

<#
/// <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
}