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

StringHookup() public method

public StringHookup ( object target, Func reader, Action hookAdder, Action hookRemover, IStringParaNotification para ) : System
target object
reader Func
hookAdder Action
hookRemover Action
para IStringParaNotification
return System
		public StringHookup(object target, Func<string> reader, Action<StringHookup> hookAdder, Action<StringHookup> hookRemover,
			IStringParaNotification para)
			: base(target, para)
		{
			Reader = reader;
			AddHook = hookAdder;
			RemoveHook = hookRemover;
			AddHook(this);
		}
		public void StringPropChanged(object modifiedObject, EventArgs args)