SIL.FieldWorks.Common.Controls.BulkEditSpecControl.TryGetOriginalListValue C# (CSharp) Method

TryGetOriginalListValue() protected method

It's possible that hvoItem will be an owner of a ghost (ie. an absent source object for m_flidAtomicProp). In that case, the cache should return 0.
protected TryGetOriginalListValue ( ISilDataAccess sda, int hvoItem, int &value ) : bool
sda ISilDataAccess
hvoItem int
value int the original list value, if we could get at one.
return bool
		protected virtual bool TryGetOriginalListValue(ISilDataAccess sda, int hvoItem, out int value)
		{
			value = Int32.MinValue;
			return false; // override
		}
		protected virtual void UpdateListItemToNewValue(ISilDataAccess sda, int hvoItem, int newVal, int oldVal)