<< Click to Display Table of Contents > 

Client Control Interface Manual > Pen Settings > Bitmap

Bitmap
Previous pageReturn to chapter overviewNext page

The following command can be found under Mark Edit... Bitmap:

Bitmap Settings

Pen Enable Flags, see Pen Settings

oPixel Hardware Mode

oPen PixelMap

oPen Power as Max Power

oUse Vector Delays

Pen PixelMaps, see Advanced Settings

 

Bitmap Settings
 

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 bitmap related checkboxes from Bitmap Properties page in pen settings.

Value_Type

Type: int

ID:

Location: ScComSAMLightClientCtrlValueTypes

scComSAMLightClientCtrlLongValueTypeBitmapPixelHardwareMode

89

Pixel Hardware Mode Enable.

scComSAMLightClientCtrlLongValueTypeBitmapPenPowerAsMaxPower

90

Pen Power as Max Power Enable.

Parameter

Type: int

Unit: none

0: Disable

1: Enable

CCI_Return

Type: int

CCI return number, see error list.

Notes

The pen number has to be set by ScSetPen.

Both checkboxes can be set and get with Pen Enable Flags as well.

C# Example: Enable the pixel hardware mode:

 

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

C# Example: Get the pixel hardware mode enable state:

 

int Pixel_Hardware_Mode = cci.ScGetLongValue( ( int )ScComSAMLightClientCtrlValueTypes.scComSAMLightClientCtrlLongValueTypeBitmapPixelHardwareMode );

Table 99: Bitmap Settings