LBColumn and Height methods for Word converter tool
This commit is contained in:
		| @@ -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 | ||||
| 		{ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user