<< Click to Display Table of Contents > 

Client Control Interface Manual > Global Settings > I/O

I/O
Previous pageReturn to chapter overviewNext page

The following parameters can be found in SAMLight at Settings System I/O.

Job Toolbar

Job Execution Delay

Last Message Input Hardware Status

 

Job Execution Delay
 

Set

Get

DLL Function

int CCI_Return = ScSetLongValue(int Value_Type, int Execution_Delay)

int Execution_Delay = ScGetLongValue(int Value_Type)

ASCII Function

int CCI_Return = ScCciSetLongValue(int Value_Type, int Execution_Delay)

int Execution_Delay = ScCciGetLongValue(int Value_Type)

Description

Set or get the global parameter job execution delay.

Value_Type

Type: int

ID:

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlLongValueTypeJobExecutionDelay

12

Execution_Delay

Type: int

Unit: [ms]

Enter the required value for the Job Execution Delay.

CCI_Return

Type: int

CCI return number, see error list.

Notes

-

C# Example: Set job execution delay to 200ms:
 
int CCI_Return = cci.ScSetLongValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeJobExecutionDelay, 200);

C# Example: Get job execution delay:
 
int Execution_Delay = cci.ScGetLongValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeJobExecutionDelay);

Table 57: Job Execution Delay

Job Toolbar
 

Set

Get

DLL Function

int CCI_Return = ScSetLongValue(int Value_Type, int Parameter)

int Parameter = ScGetLongValue(int Value_Type)

ASCII Function

int CCI_Return = ScCciSetLongValue(int Value_Type, int Parameter)

int Parameter = ScCciGetLongValue(int Value_Type)

Description

Set or get the status of the Jobs Toolbar.

Value_Type

Type: int

ID:

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlLongValueTypeEnableJobToolbar

88

Parameter

Type: int

Unit: none

0: Enable Job toolbar.

1: Disable Job toolbar.

CCI_Return

Type: int

CCI return number, see error list.

Notes

-

C# Example: Enable job toolbar:
 
int CCI_Return = cci.ScSetLongValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeEnableJobToolbar, 1);

C# Example: Get job toolbar state:

 
int CCI_Return = cci.ScGetLongValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeEnableJobToolbar);

Table 58: Job Toolbar