Added ConvertUnderscoreToUnderline flag

This commit is contained in:
Rich 2017-09-21 17:37:49 +00:00
parent 48df3eeee8
commit dd756593fb

View File

@ -2136,6 +2136,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _ConvertCaretToDelta, "@ConvertCaretToDelta"); return LazyLoad(ref _ConvertCaretToDelta, "@ConvertCaretToDelta");
} }
} }
private LazyLoad<bool> _ConvertUnderscoreToUnderline;
public bool ConvertUnderscoreToUnderline
{
get
{
return LazyLoad(ref _ConvertCaretToDelta, "@ConvertUnderscoreToUnderline");
}
}
// This format flag turns off the Replace Words functionality. // This format flag turns off the Replace Words functionality.
// in 16-bit proms, this was done simply by having an empty Replace Words list. // in 16-bit proms, this was done simply by having an empty Replace Words list.
// in 32-bit the inheiradence logic finds a replace words list in the base format // in 32-bit the inheiradence logic finds a replace words list in the base format