LBColumn and Height methods for Word converter tool
This commit is contained in:
parent
c02eebcfea
commit
462d384fbd
@ -1108,6 +1108,14 @@ namespace LBWordLibrary
|
|||||||
{
|
{
|
||||||
return InvokeMethod("GetEnumerator");
|
return InvokeMethod("GetEnumerator");
|
||||||
}
|
}
|
||||||
|
public LBColumn this[int item]
|
||||||
|
{
|
||||||
|
get // Get a Column from a List
|
||||||
|
{
|
||||||
|
return new LBColumn(base[item]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
public enum LBWdLineSpacing
|
public enum LBWdLineSpacing
|
||||||
{
|
{
|
||||||
@ -1647,6 +1655,11 @@ namespace LBWordLibrary
|
|||||||
get { return (GetProperty("Width") as float? ?? 0); }
|
get { return (GetProperty("Width") as float? ?? 0); }
|
||||||
set { SetProperty("Width", value); }
|
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
|
// C2019-021 RHM 5/15/2019 Added newe methods and properties for Import Word Content
|
||||||
public int RowIndex
|
public int RowIndex
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user