SIL.FieldWorks.IText.AddWordsToLexiconTests.SandboxForTests.SetTssInSandbox C# (CSharp) Method

SetTssInSandbox() private method

private SetTssInSandbox ( int flid, int ws, string str ) : ITsString
flid int
ws int
str string
return ITsString
			internal ITsString SetTssInSandbox(int flid, int ws, string str)
			{
				ITsString tss = TsStringUtils.MakeTss(str, ws);
				switch (flid)
				{
					default:
						tss = null;
						break;
					case InterlinLineChoices.kflidWordGloss:
						m_caches.DataAccess.SetMultiStringAlt(kSbWord, ktagSbWordGloss, ws, tss);
						break;
				}
				return tss;
			}