public void CopyShadowToPlain(HansPlc.fbWorldWeatherWatch source) { NorthPole.CopyShadowToPlain(source.NorthPole); SouthPole.CopyShadowToPlain(source.SouthPole); Verl.CopyShadowToPlain(source.Verl); Kriva.CopyShadowToPlain(source.Kriva); PlcCommentOnCurrentWeather = source.PlcCommentOnCurrentWeather.Shadow; }
public void CopyPlainToShadow(HansPlc.fbWorldWeatherWatch target) { NorthPole.CopyPlainToShadow(target.NorthPole); SouthPole.CopyPlainToShadow(target.SouthPole); Verl.CopyPlainToShadow(target.Verl); Kriva.CopyPlainToShadow(target.Kriva); target.PlcCommentOnCurrentWeather.Shadow = PlcCommentOnCurrentWeather; }
protected PlainfbWorldWeatherWatch CreatePlainerType(PlainfbWorldWeatherWatch cloned) { cloned.NorthPole = NorthPole.CreatePlainerType(); cloned.SouthPole = SouthPole.CreatePlainerType(); cloned.Verl = Verl.CreatePlainerType(); cloned.Kriva = Kriva.CreatePlainerType(); return(cloned); }
public void LazyShadowToOnline() { NorthPole.LazyShadowToOnline(); SouthPole.LazyShadowToOnline(); Verl.LazyShadowToOnline(); Kriva.LazyShadowToOnline(); PlcCommentOnCurrentWeather.Cyclic = PlcCommentOnCurrentWeather.Shadow; }
public void LazyOnlineToShadow() { NorthPole.LazyOnlineToShadow(); SouthPole.LazyOnlineToShadow(); Verl.LazyOnlineToShadow(); Kriva.LazyOnlineToShadow(); PlcCommentOnCurrentWeather.Shadow = PlcCommentOnCurrentWeather.LastValue; }
public PlainfbWorldWeatherWatch CreatePlainerType() { var cloned = new PlainfbWorldWeatherWatch(); cloned.NorthPole = NorthPole.CreatePlainerType(); cloned.SouthPole = SouthPole.CreatePlainerType(); cloned.Verl = Verl.CreatePlainerType(); cloned.Kriva = Kriva.CreatePlainerType(); return(cloned); }