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

get_StringWidth() public method

Answer some arbitrary guess. The string length is not very good, but probably good enough for collector results. Non-zero (except for empty strings) in case something divides by it.
public get_StringWidth ( ITsString tss, ITsTextProps _ttp, int &dmpx, int &dmpy ) : void
tss ITsString
_ttp ITsTextProps
dmpx int
dmpy int
return void
		public void get_StringWidth(ITsString tss, ITsTextProps _ttp, out int dmpx, out int dmpy)
		{
			dmpx = tss.Length;
			dmpy = 10;
		}