SIL.FieldWorks.IText.ParaDataUpdateTracker.SetInt C# (CSharp) Méthode

SetInt() protected méthode

protected SetInt ( int hvo, int flid, int newValue ) : void
hvo int
flid int
newValue int
Résultat void
		protected override void SetInt(int hvo, int flid, int newValue)
		{
			int oldValue = Decorator.get_IntProp(hvo, flid);
			if (oldValue != newValue)
			{
				base.SetInt(hvo, flid, newValue);
				MarkCurrentAnnotationAsChanged();
			}
		}