Added EditoralSpellCheck format flag

This commit is contained in:
John Jenko 2016-10-25 18:46:39 +00:00
parent 43260d289b
commit 2342de91bd

View File

@ -655,6 +655,17 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _PromptForCautionType, "@PromptForCautionType"); return LazyLoad(ref _PromptForCautionType, "@PromptForCautionType");
} }
} }
// Put in for Farley. This puts editor in editoral mode while a spell check being performed
// - No change bars will be added
// - existing change bars will remain
private LazyLoad<bool> _EditoralSpellCheck;
public bool EditoralSpellCheck
{
get
{
return LazyLoad(ref _EditoralSpellCheck, "@EditoralSpellCheck");
}
}
} }
#endregion #endregion
#region PrintDataAll #region PrintDataAll