<< Click to Display Table of Contents > 

Client Control Interface Manual > Other > Parameter Constants

Parameter Constants
Previous pageReturn to chapter overviewNext page

Double Para

String Para

 

Double Para

 

Set

Get

DLL Function

int CCI_Return = ScSetDoubleValue(int Value_Type, double Parameter)

double Parameter = ScGetDoubleValue(int Value_Type)

ASCII Function

int CCI_Return = ScCciSetDoubleValue(int Value_Type, double Parameter)

double Parameter = ScCciGetDoubleValue(int Value_Type)

Description

All Double Para are dummy values. You define with those dummies your value and use another command to set the value to the desired parameter. For all parameter, which use Double Para the desired Double Para number is given in the respective command description or note.

Value_Type

Type: int

ID:

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlDoubleValueTypeDoublePara1

66

scComSAMLightClientCtrlDoubleValueTypeDoublePara2

67

scComSAMLightClientCtrlDoubleValueTypeDoublePara3

95

scComSAMLightClientCtrlDoubleValueTypeDoublePara4

148

scComSAMLightClientCtrlDoubleValueTypeDoublePara5

149

scComSAMLightClientCtrlDoubleValueTypeDoublePara6

150

scComSAMLightClientCtrlDoubleValueTypeDoublePara7

151

scComSAMLightClientCtrlDoubleValueTypeDoublePara8

152

Parameter

Type: double

Unit: none

Set the desired parameter value.

CCI_Return

Type: int

CCI return number, see error list.

Notes

An other command is needed afterwards to set the value in the software.

C# Example: Set DoublePara1 to 1.0:

 
int CCI_Return = cci.ScSetDoubleValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlDoubleValueTypeDoublePara1, 1.0);

C# Example: Get DoublePara1:

 

double para1 = cci.ScGetDoubleValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlDoubleValueTypeDoublePara1);

Table 346: Double Para

String Para
 

Set

Get

DLL Function

int CCI_Return = ScSetStringValue(int Value_Type, double Parameter)

ASCII Function

int CCI_Return = ScCciSetStringValue(int Value_Type, double Parameter)

Description

Set or get string values.

Value_Type

Type: int

ID:

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlStringValueTypeStringPara1

19

scComSAMLightClientCtrlStringValueTypeStringPara2

20

Parameter

Type: string

Unit: none

Set the desired parameter value.

CCI_Return

Type: int

CCI return number, see error list.

Notes

-

C# Example: Create a beam compensated copy out of the entity "Entity" with the name "BeamCompedEntity":
 

int CCI_Return_01 = cci.ScSetStringValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlStringValueTypeStringPara1,"Entity");

int CCI_Return_02 = cci.ScSetStringValue((int)

ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlStringValueTypeStringPara2,"BeamCompedEntity" );

Table 347: String Para