<< Click to Display Table of Contents > 

Client Control Interface Manual > Global Settings > General

General
Previous pageReturn to chapter overviewNext page

The following parameters can be found in SAMLight at Settings System General.

Mode → Application

oDon't Update View

oDisableUndo

Save Pens Now

Save Settings Now

 

Save Pens Now
 

Set

Get

DLL Function

int CCI_Return = ScExecCommand(int Cmd_ID)

ASCII Function

int CCI_Return = ScCciExecCommand(int Cmd_ID)

Description

Saves the current pens to the settings file.

Cmd_ID

Type: int

ID:

Location: ScComSAMLightClientCtrlExecCommandConstants

scComSAMLightClientCtrlExecCommandSaveSettingsNow

77

CCI_Return

Type: int

CCI return number, see error list.

Notes

-

C# Example: Save Pens now:
 
int CCI_Return = cci.ScExecCommand((int)ScComSAMLightClientCtrlExecCommandConstants.scComSAMLightClientCtrlExecCommandSavePensNow);

Table 53: Save Pens Now

 

Save Settings Now
 

Set

Get

DLL Function

int CCI_Return = ScExecCommand(int Cmd_ID)

ASCII Function

int CCI_Return = ScCciExecCommand(int Cmd_ID)

Description

Saves the current settings to the settings file.

Cmd_ID

Type: int

ID:

Location: ScComSAMLightClientCtrlExecCommandConstants

scComSAMLightClientCtrlExecCommandSaveSettingsNow

51

CCI_Return

Type: int

CCI return number, see error list.

Notes

-

C# Example: Save settings now:
 
int CCI_Return = cci.ScExecCommand((int)ScComSAMLightClientCtrlExecCommandConstants.scComSAMLightClientCtrlExecCommandSaveSettingsNow);

Table 54: Save Settings Now