Enum FieldExtra
Flags that describe what the function of the specific port is.
Namespace: Mechatronics.SystemGraph
Assembly: solution.dll
Syntax
[Flags]
public enum FieldExtra
Fields
Name | Description |
---|---|
ChangeEvent | This flag indicates that the port will register a call back to respond to data. By default setting this flag implies that the port is consuming data as well. |
Clock | Clock ports are unused for now. |
Constant | Constant ports only produce data, and take priority over all producers. |
HideConnector | Set this if you do not want to see a connector for this port for any reason. |
Read | Set this flag if the port is consuming data |
Undefined | If Undefined, then defaults to FieldExtra.Read. |
Write | Set this flag if the port is producing data. |