SaveOptions Enumeration
- Updated2026-02-03
- 1 minute(s) read
Specifies various options used to save a task, a local or global channel , or a custom scale to Measurement & Automation Explorer (MAX).
Syntax
Namespace: NationalInstruments.DAQmx
public enum SaveOptions
Remarks
You can specify multiple options by using bitwise or combining individual values.
Members
| Name | Value | Description |
|---|---|---|
| AllowInteractiveEditing | 0x1 | The saved object may be edited through an interactive tool, such as Measurement & Automation Explorer (MAX). |
| AllowInteractiveDeletion | 0x2 | The saved object may be deleted through an interactive tool, such as Measurement & Automation Explorer (MAX). |
| OverwriteExisting | 0x4 | If a saved object already exists in Measurement & Automation Explorer (MAX) with the same name as the new object, the new object overwrites the old object. |
| None | 0x0 | No options are enabled. |
| Default | 0x3 | The AllowInteractiveDeletion and AllowInteractiveEditing options are enabled. |
| All | 0x7 | All options are enabled. |