KeyValueTable<LabelAvoidance> Class
A lookup table that maps attribute values to LabelAvoidance values.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public abstract class KeyValueTable< LabelAvoidance > :
EngineObject,
IDictionary< AttributeValue, LabelAvoidance >
Remarks
This class class represents a table that maps AttributeValue keys to LabelAvoidance values. The class is abstract and cannot be instantiated but the KeyedAttributeVariable<LabelAvoidance>.Table property returns an instance that maps keys to the result type of the attribute variable.
Table instances are usually populated in a configuration file with the help of Carmenta Studio but they can be populated or modified through code as well.
Please see Attribute Controlled Visualization for more information on how attribute variables are used to control visualization.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
KeyValueTable<LabelAvoidance>
Platforms
Windows, Linux, Android
KeyValueTable<LabelAvoidance> Members
The KeyValueTable<LabelAvoidance> type has the following members.
Properties
Name | Description |
---|---|
Count | Gets the number of elements in the table. |
IsDisposed | Gets a value that tells whether the current KeyValueTable<LabelAvoidance> has been disposed. Inherited from EngineObject |
IsReadOnly | Gets a value that tells whether the table is read-only. |
Item | Gets or sets the element with the specified key. |
Keys | Gets an ICollection containing the keys in the table. |
NativeHandle | Gets the native Carmenta Engine kernel object the current KeyValueTable<LabelAvoidance> represents. Inherited from EngineObject |
Values | Gets an ICollection containing the values in the table. |
Methods
Name | Description |
---|---|
Add | Adds a new element to the table. |
AddRange | Adds the elements in the specified collection to the KeyValueTable<LabelAvoidance>. |
Clear | Removes all elements from the table. |
Clone | Creates a copy of an object. Inherited from EngineObject |
Contains | Determines whether the table contains the specified element. |
ContainsKey | Determines whether the table contains an element with the specified key. |
CopyTo | Copies all elements in the table to a compatible one-dimensional array, starting at the specified index of the target array. |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
GetEnumerator | Returns an enumerator that iterates through all elements in the table. |
Remove | Removes element with the specified key from the table. |
TryGetValue | Gets the value associated with the specified key. |