public eventArgs_dateChanged(IDot_Value sender, DateTime Old, DateTime New) { instance = sender; newValue = New; oldValue = Old; }
public eventArgs_Date_expectedChange(IDot_Value sender, d_valueChange_eventArgs<DateTime> currentValueSetHandler, DateTime Old, DateTime New) { expectedDate = currentValueSetHandler; instance = sender; newValue = New; oldValue = Old; }
public eventArgs_Date_expectedChange(IDot_Value sender, d_valueChange_eventArgs <DateTime> currentValueSetHandler, DateTime Old, DateTime New) { expectedDate = currentValueSetHandler; instance = sender; newValue = New; oldValue = Old; }
public void setDot(IDot_Value Dot) { if (_dotSet && !enabled) { return; } Dot.expectedDateChange += dot_expectedDateChange; dotCurrentDate = () => Dot.current; checkEstimated(); _dotSet = true; }
public void connectValue(IDot_Value Value) { linkCurrentDate = () => Value.current; }
public dot_Move(IDot_Value Value, IDot_Limit Limit) : this() { connectValue(Value); connectLimit(Limit); }
public void setDot(IDot_Value Dot) { if (_dotSet && !enabled) return; Dot.expectedDateChange += dot_expectedDateChange; dotCurrentDate = () => Dot.current; checkEstimated(); _dotSet = true; }