- Added code to handle missing A0 Section Transitions

- Added code to handle "AND Range" transitions
- Fixed code to replace transition tokens.  It was removing the last character.
Added Background Saving
This commit is contained in:
Rich
2010-09-06 19:31:52 +00:00
parent 773b7c266b
commit 90a7a6dbc0
2 changed files with 17 additions and 1 deletions

View File

@@ -140,6 +140,10 @@ namespace LBWordLibrary
get { return (LBWdWindowState)GetProperty("WindowState"); }
set { SetProperty("WindowState", value); }
}
public int BackgroundSavingStatus
{
get { return (GetProperty("BackgroundSavingStatus") as int? ?? 0); }
}
public void Quit()
{
InvokeMethod("Quit", Missing.Value, Missing.Value, Missing.Value);