diff --git a/PROMS/LBWordLibrary/LBComObject.cs b/PROMS/LBWordLibrary/LBComObject.cs index 26896f06..89f21eba 100644 --- a/PROMS/LBWordLibrary/LBComObject.cs +++ b/PROMS/LBWordLibrary/LBComObject.cs @@ -1108,6 +1108,14 @@ namespace LBWordLibrary { return InvokeMethod("GetEnumerator"); } + public LBColumn this[int item] + { + get // Get a Column from a List + { + return new LBColumn(base[item]); + } + } + } public enum LBWdLineSpacing { @@ -1647,6 +1655,11 @@ namespace LBWordLibrary get { return (GetProperty("Width") as float? ?? 0); } set { SetProperty("Width", value); } } + public float Height + { + get { return (GetProperty("Height") as float? ?? 0); } + set { SetProperty("Height", value); } + } // C2019-021 RHM 5/15/2019 Added newe methods and properties for Import Word Content public int RowIndex {