Interface ICamApiUserParameter
A single user-defined parameter of a tech operation. User parameters are free-form name/value/comment triples (all strings) used in operation header/tail templates. Name is the identity within the list and is read-only; Value and Comment are editable. Persisted with the project.
Namespace: CAMAPI.TechOperation
Assembly: CAMAPI.TechOperation.dll
Syntax
[Guid("29059E02-9E1C-427C-9254-68446075E39B")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ICamApiUserParameter
Properties
Comment
Free-form comment. Empty if none.
Declaration
string Comment { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Parameter name. Identity within the list; read-only.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
Value
Parameter string value.
Declaration
string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| string |