SIL.FieldWorks.FwCoreDlgs.ReplaceAllCollectorEnv.AddStringAltMember C# (CSharp) Méthode

AddStringAltMember() public méthode

Member AddStringAltMember
public AddStringAltMember ( int tag, int ws, IVwViewConstructor _vwvc ) : void
tag int tag
ws int ws
_vwvc IVwViewConstructor _vwvc
Résultat void
		public override void AddStringAltMember(int tag, int ws, IVwViewConstructor _vwvc)
		{
			ITsString tss = DoReplace(m_sda.get_MultiStringAlt(m_hvoCurr, tag, ws));
			if (tss != null)
			{
				m_sda.SetMultiStringAlt(m_hvoCurr, tag, ws, tss);
				// We shouldn't have to do this in the new FDO
				//// For multi-string properties, the "ivMin" parameter to PropChanged is
				//// really the writing system HVO (per documentation in idh file).
				//m_sda.PropChanged(null, (int)PropChangeType.kpctNotifyAll, m_hvoCurr, tag,
				//    ws, tss.Length, tss.Length);
			}
		}