<< Click to Display Table of Contents > 

Client Control Interface Manual > Other > External Stop

External Stop
Previous pageReturn to chapter overviewNext page

Enable external stop

 

Enable external stop
 

Set

Get

DLL Function,

int CCI_Return = ScSetLongValue(int Value_Type, int Ext_Stop)

int Ext_Stop = ScGetLongValue(int Value_Type)

ASCII Function

int CCI_Return = ScCciSetLongValue(int Value_Type, int Ext_Stop)

int Ext_Stop = ScCciGetLongValue(int Value_Type)

Description

Set or get the state of the external stop.

Value_Type

Type: int

ID:

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlLongValueTypeEnableExternStop

136

Ext_Stop

Type: int

Unit: none

0: Disable external stop.

1: Enable external stop.

CCI_Return

Type: int

CCI error number, see error list.

Notes

Do not set during marking operation.

C# Example: Disable external stop:

 

int CCI_Return = cci.ScSetLongValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeEnableExternStop, 0);

C# Example: Get current external stop enable state:

 

int State = cci.ScGetLongValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeEnableExternStop;

Table 362: Enable external stop