SIL.FieldWorks.FwCoreDlgs.ReplaceAllCollectorEnv.AddStringProp C# (CSharp) Method

AddStringProp() public method

Member AddStringProp
public AddStringProp ( int tag, IVwViewConstructor _vwvc ) : void
tag int tag
_vwvc IVwViewConstructor _vwvc
return void
		public override void AddStringProp(int tag, IVwViewConstructor _vwvc)
		{
			ITsString tss = DoReplace(m_sda.get_StringProp(m_hvoCurr, tag));
			if (tss != null)
			{
				m_sda.SetString(m_hvoCurr, tag, tss);
				// We shouldn't have to do this in the new FDO
				//m_sda.PropChanged(null, (int)PropChangeType.kpctNotifyAll, m_hvoCurr, tag,
				//    0, tss.Length, tss.Length);
			}
		}