This commit is contained in:
2010-11-23 14:42:02 +00:00
parent 05b8809608
commit ecf6b5bfd1
2 changed files with 84 additions and 0 deletions

View File

@@ -292,6 +292,12 @@ namespace LBWordLibrary
{
get { return (GetProperty("SaveFormat") as int? ?? 0); }
}
public Boolean Saved
{
get { return (GetProperty("Saved") as Boolean? ?? false); }
set { SetProperty("Saved", value); }
}
public String FullName
{
get { return (GetProperty("FullName").ToString()); }
@@ -348,6 +354,14 @@ namespace LBWordLibrary
{
return new LBRange(InvokeMethod("Range", Start, End));
}
public Boolean Undo()
{
return InvokeMethod("Undo", Missing.Value) as Boolean? ?? false;
}
public Boolean Undo(object Times)
{
return InvokeMethod("Undo", Times) as Boolean? ?? false;
}
}
public partial class LBWindow : LBComObject
{