Type: ISym3OperatorClient
Summary:
Remarks:
Exit(System.Boolean)
Summary:
Parameters:
FireUserActivity(System.Object,Sym3.Operator.Runtime.UserActivityType,System.Object[])
Summary:
Parameters:
Restart
Summary:
IncreaseVolume
Summary:
DecreaseVolume
Summary:
MuteVolume
Summary:
MaxNumberOfAlarms
Summary:
Type:
System.Int32
Access:
Read
MaxNumberOfEvents
Summary:
Type:
System.Int32
Access:
Read
Settings
Scripting
Layout
Debug
Authentication
Alarms
Events
Tags
Connections
Products
Project
Logger
LogFilePath
Summary:
Type:
System.String
Access:
Read
Tools
CurrentLanguage
ClientStarted
Summary:
Example:
This example shows you how to subscribe to this event
//---- JAVASCRIPT:
Client.add_ClientStarted(OnStart);
function OnStart() {
...
}
//---- C#:
Client.ClientStarted += new ClientStartStopEventHandler(OnClientStarted);
...
private void OnClientStarted()
{
// TODO...
}
ClientStopped
Summary:
Example:
This example shows you how to subscribe to this event
//---- JAVASCRIPT:
Client.add_ClientStopped(OnStop);
function OnStop() {
...
}
//---- C#:
Client.ClientStopped += new ClientStartStopEventHandler(OnClientStopped);
...
private void OnClientStopped()
{
// TODO...
}
UserActivity
Summary:
Example:
This example shows you how to subscribe to this event
//---- JAVASCRIPT:
Client.add_UserActivity(OnUserActivity);
function OnUserActivity(source, type, args) {
if(type == BCS.Sym3.Operator.Runtime.UserActivityType.ButtonClicked) { ... }
else if(type == BCS.Sym3.Operator.Runtime.UserActivityType.MenuItemClicked) { ... }
else if(type == BCS.Sym3.Operator.Runtime.UserActivityType.HotKeyPressed) { ... }
else if(type == BCS.Sym3.Operator.Runtime.UserActivityType.CurrentUserChanged) { ... }
else if(type == BCS.Sym3.Operator.Runtime.UserActivityType.ValueChanged) { ... }
}
//---- C#:
Client.UserActivity += new ActivityEventHandler(OnUserActivity);
...
private void OnUserActivity(object source, UserActivityType type, params object[] args)
{
// TODO...
}