SIL.FieldWorks.Common.RootSites.CollectorEnv.CheckForNonPropInfo C# (CSharp) Method

CheckForNonPropInfo() protected method

See whether anything has been added to the view while no property was open, and if so, bump the gap-in-attrs count.
protected CheckForNonPropInfo ( ) : void
return void
		protected virtual void CheckForNonPropInfo()
		{
			if (Finished)
				return;

			if (m_fGotNonPropInfo)
			{
				IncrementPropCount((int)VwSpecialAttrTags.ktagGapInAttrs);
				m_fGotNonPropInfo = false;
			}
		}