Added Properties required for the Import of MSWord text.

This commit is contained in:
Rich 2019-05-06 18:23:22 +00:00
parent 5f63a39299
commit c973925790

View File

@ -477,6 +477,11 @@ namespace LBWordLibrary
{
get { return new LBPageSetup(GetProperty("PageSetup")); }
}
// C2019-021 Added LateBinding for ListFormat
public LBListFormat ListFormat
{
get { return new LBListFormat(GetProperty("ListFormat")); }
}
public LBFontClass Font
{
get { return new LBFontClass(GetProperty("Font")); }
@ -1745,7 +1750,22 @@ namespace LBWordLibrary
get { return (GetProperty("ListLevelNumber") as int? ?? 0); }
}
}
// public partial class LBStyles : LBComObjectList<LBStyles, LBStyle> /* Collection */
// C2019-021 Added new object type LBListFormat
public partial class LBListFormat : LBComObject
{
public LBListFormat() { }
public LBListFormat(Object item) : base(item) { }
public String NameLocal
{
get { return (GetProperty("NameLocal").ToString()); }
set { SetProperty("NameLocal", value); }
}
public string ListString
{
get { return (GetProperty("ListString").ToString()); }
}
}
// public partial class LBStyles : LBComObjectList<LBStyles, LBStyle> /* Collection */
// {
// public LBStyles(Object item)
// {