SIL.FieldWorks.SharpViews.Hookups.StringHookup.InsertText C# (CSharp) Method

InsertText() private method

private InsertText ( InsertionPoint ip, string input ) : void
ip SIL.FieldWorks.SharpViews.Selections.InsertionPoint
input string
return void
		internal override void InsertText(InsertionPoint ip, string input)
		{
			string oldValue = ((StringClientRun)ParaBox.Source.ClientRuns[ClientRunIndex]).Contents;
			string newValue = oldValue.Insert(ip.StringPosition, input);
			Writer(newValue);
		}