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")); }
|
get { return new LBPageSetup(GetProperty("PageSetup")); }
|
||||||
}
|
}
|
||||||
|
// C2019-021 Added LateBinding for ListFormat
|
||||||
|
public LBListFormat ListFormat
|
||||||
|
{
|
||||||
|
get { return new LBListFormat(GetProperty("ListFormat")); }
|
||||||
|
}
|
||||||
public LBFontClass Font
|
public LBFontClass Font
|
||||||
{
|
{
|
||||||
get { return new LBFontClass(GetProperty("Font")); }
|
get { return new LBFontClass(GetProperty("Font")); }
|
||||||
@ -1745,6 +1750,21 @@ namespace LBWordLibrary
|
|||||||
get { return (GetProperty("ListLevelNumber") as int? ?? 0); }
|
get { return (GetProperty("ListLevelNumber") as int? ?? 0); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 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 partial class LBStyles : LBComObjectList<LBStyles, LBStyle> /* Collection */
|
||||||
// {
|
// {
|
||||||
// public LBStyles(Object item)
|
// public LBStyles(Object item)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user