SIL.FieldWorks.IText.InterlinVc.AddColoredString C# (CSharp) Method

AddColoredString() protected method

Add the specified string in the specified color to the display, using the UI Writing system.
protected AddColoredString ( IVwEnv vwenv, int color, string str ) : void
vwenv IVwEnv
color int
str string
return void
		protected void AddColoredString(IVwEnv vwenv, int color, string str)
		{
			SetColor(vwenv, color);
			vwenv.AddString(m_tsf.MakeString(str, m_wsUi));
		}