| Namespace: | Sirenix.OdinInspector.Editor.ValueResolvers |
| Assembly: | Sirenix.OdinInspector.Editor |
public struct NamedValues
public int Count { get; }
public NamedValue this[int index] { get; }
| System.Int32 | index |
public void Add(NamedValue value)
| NamedValue | value |
public void Add(string name, Type type, ValueResolverFunc<object> valueGetter)
| System.String | name | |
| System.Type | type | |
| Sirenix.OdinInspector.Editor.ValueResolvers.ValueResolverFunc<System.Object> | valueGetter |
public void Add(string name, Type type, object value)
| System.String | name | |
| System.Type | type | |
| System.Object | value |
public object GetValue(string name)
| System.String | name |
| System.Object |
public string GetValueOverviewString()
| System.String |
public void Set(string name, object value)
| System.String | name | |
| System.Object | value |
public bool TryGetValue(string name, out NamedValue value)
| System.String | name | |
| NamedValue | value |
| System.Boolean |
public void UpdateValues(ref ValueResolverContext context, int selectionIndex)
| ValueResolverContext | context | |
| System.Int32 | selectionIndex |