Example #1
0
        public PalletStation(StationConfiguration config) : base(config)
        {
            Configuration = config;
            Configuration.StationConfigurationChanged += StationConfigChanged;

            //Color = Color.Gray;
            TransportSection.Visible             = false;
            TransportSection.Route.Motor.Visible = false;
            if (ConveyorType == PalletConveyorType.Chain)
            {
                ChainLeft.Visible  = false;
                ChainRight.Visible = false;
                StartLine2.Visible = false;
                EndLine2.Visible   = false;
            }
            StartLine1.Visible           = false;
            EndLine1.Visible             = false;
            Arrow.Visible                = false;
            LineReleasePhotocell.Visible = false;

            PositionAp = TransportSection.Route.InsertActionPoint(Length / 2);

            UpdateType();
        }
Example #2
0
 public StationConfigurationChangedEventArgs(StationConfiguration configuration)
 {
     Configuration = configuration;
 }