Setup Center mit Setup Center Interface.pdf - 第32页
3 Application progra m interface (API) description SIPLACE Ausgabe 05/2007 32 3.1.9.2 Protected Inst ance Methods 3 3 3.1.9.3 Inst ance Methods in det ail The public inst ance methods are not described at this position, …

SIPLACE 3 Application program interface (API) description
Ausgabe 05/2007
31
MessageHandler 3
Eventhandler for all exceptions and errors, which occur within Setup Center and below Parameter
- strMessages: list of messages (errors, warnings, infos ...) 3
3
3
PackagingQuantityChangedHandler 3
Eventhandler for quantity changes of packaging units. 3
3
3
3.1.9 Base class for implementation of callback event handler
(ASetupCenterCallback)
3.1.9.1 Public Instance Methods
3
3
3
3
3
Member name Description
OnFeederPlaced
Event will be thrown, if feeders are set up to the line
OnFeederRemoved
Event will be thrown, if feeders are removed from the line
OnMessagesReceived
Event will be thrown, if errors/warnings/infos occur within Setup
Center
OnNewSetupActive
Event will be thrown, if there is a new setup active on a station of
the line. The event will only be thrown, if the machine reports back
a new active setup
OnPackagingQuantityChan-
ged
Event will be thrown, if quantities of packaging units have changed
OnSetupChanged
Event will be thrown, if Divisions / PUs have changed

3 Application program interface (API) description SIPLACE
Ausgabe 05/2007
32
3.1.9.2 Protected Instance Methods
3
3
3.1.9.3 Instance Methods in detail
The public instance methods are not described at this position, as they internally call the protected
instance methods. This design is required to realize events via the .net remoting interface. There-
fore a client, which wants to receive events via the SCI interface, has to implement the protected
methods within its application. 3
_OnFeederPlaced 3
Callback for the FeederPlaced event, which has to be implemented by the client. 3
3
3
Parameters 3
sender 3
Object, which released this event. 3
feederLocations 3
Locations of the feeders, which have been placed. 3
3
3
Member name Description
_OnFeederPlaced
Callback for the FeederPlaced event, which has to be implemented
by the client
_OnFeederRemoved
Callback for the FeederRemoved event, which has to be imple-
mented by the client
_OnMessagesReceived
Callback for the MessagesReceived event, which has to be imple-
mented by the client
_OnNewSetupActive
Callback for the NewSetupActive event, which has to be imple-
mented by the client
_OnPackagingQuantityChan
ged
Callback for the PackagingQuantityChanged event, which has to
be implemented by the client
_OnSetupChanged
Callback for the SetupChanged event, which has to be implemen-
ted by the client

SIPLACE 3 Application program interface (API) description
Ausgabe 05/2007
33
_OnFeederRemoved 3
Callback for the FeederRemoved event, which has to be implemented by the client. 3
3
3
Parameters 3
sender 3
Object, which released this event. 3
feederLocations 3
Locations of the feeders, which have been removed. 3
3
_OnNewSetupActive 3
Callback for the NewSetupActive event, which has to be implemented by the client. 3
3
3
Parameters 3
sender 3
Object, which has released this event. 3
strStation 3
The station, on which a new setup is active. 3
strSetup 3
The new setup. 3
3
3
3
3