Added Properties required for the Import of MSWord text.
This commit is contained in:
parent
5f63a39299
commit
c973925790
@ -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)
|
||||
// {
|
||||
|
Loading…
x
Reference in New Issue
Block a user