Class NodeDefinition
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Flow.Editor.Definition
Assembly: Simplic.Flow.Editor.Definition.dll
Syntax
public abstract class NodeDefinition
Properties
| Improve this Doc View SourceCategory
Declaration
public string Category { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DisplayName
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DocumentationUrl
Gets or sets the node documentation URL.
Declaration
public string DocumentationUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FullTypeName
Gets or sets the full type name of the node.
The full type name is used to try to dynamically create the node documentation URL if not explicitly given as an attribute.
Declaration
public string FullTypeName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
InDataPins
Declaration
public IList<DataPinDefinition> InDataPins { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<DataPinDefinition> |
InFlowPins
Declaration
public IList<FlowPinDefinition> InFlowPins { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<FlowPinDefinition> |
Name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OutDataPins
Declaration
public IList<DataPinDefinition> OutDataPins { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<DataPinDefinition> |
OutFlowPins
Declaration
public IList<FlowPinDefinition> OutFlowPins { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<FlowPinDefinition> |
Tooltip
Declaration
public string Tooltip { get; set; }
Property Value
Type | Description |
---|---|
System.String |