LBColumn and Height methods for Word converter tool

This commit is contained in:
Devin Jankowski 2020-02-28 16:20:20 +00:00
parent c02eebcfea
commit 462d384fbd

View File

@ -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
{