<< Click to Display Table of Contents > 

Client Control Interface Manual > Splitting > Bitmap Rotary Splitting

Bitmap Rotary Splitting
Previous pageReturn to chapter overviewNext page

Bitmap Mode Parameters

Enable Bitmap Rotary Splitting

 

Bitmap Mode Parameters
 

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

 

Value_Type

Type: int

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlDoubleValueTypeBmpContinuousTotalDiameter

141

Set total diameter value [mm*].

scComSAMLightClientCtrlDoubleValueTypeBmpContinuousAngle

142

Set the mark angle [deg].

Parameter

Type: double

Unit: depends on constant

The desired value.

CCI_Return

Type: int

CCI return number, see error list.

Notes

The default unit is mm, but the user can select a different unit.

C# Example:

 

 

Table 294: Bitmap Mode Parameters

Enable Bitmap Rotary Splitting
 

Set

Get

DLL Function

int CCI_Return = ScSetLongValue(int Value_Type, int Bitmap_Splitting)

int Bitmap_Splitting = ScGetLongValue(int Value_Type)

ASCII Function

int CCI_Return = ScCciSetLongValue(int Value_Type, int Bitmap_Splitting)

int Bitmap_Splitting = ScCciGetLongValue(int Value_Type)

Description

Enable the bitmap rotary splitting mode.

Value_Type

Type: int

ID:

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlLongValueTypeEnableBmpSplitting

93

Bitmap_Splitting

Type: int

Unit: none

0: Disable bitmap rotary splitting.

1: Enable bitmap rotary splitting.

CCI_Return

Type: int

CCI return number, see error list.

Notes

-

C# Example: Get if bitmap rotary splitting is enabled:

 

int Bitmap_Splitting = cci.ScGetLongValue((int)ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeEnableBmpSplitting);

Table 295: Enable Bitmap Rotary Splitting