Class GraphableField
A graphable field object is used by a container view controller to expose a field to the graph editor.
Inheritance
System.Object
GraphableField
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: Pelican7.UIGraph
Assembly: UI Graph API Documentation Project.dll
Syntax
public class GraphableField
Constructors
GraphableField(String, Boolean)
Declaration
public GraphableField(string fieldName, bool allowsMultiple = false)
Parameters
Type | Name | Description |
---|---|---|
System.String | fieldName | |
System.Boolean | allowsMultiple |
Properties
AllowsMultiple
Allows multiple values? If true, the exposed port in the graph editor will allow connection to many view controller nodes. Otherwise it will allow connection to a single view controller node. This can be used to expose an array of view controllers to the graph editor, for example.
Declaration
public bool AllowsMultiple { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
FieldName
The field's name. This will be displayed in the graph editor.
Declaration
public string FieldName { get; }
Property Value
Type | Description |
---|---|
System.String |