IAttributeUsage Class
Provides information about which attributes are used to generate a custom symbol.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public abstract class IAttributeUsage : EngineObject
Remarks
An implementation of the IAttributeUsage interface is passed as an argument to the ICustomSymbol.GetAttributeUsage method. The custom symbol implementation can use it to tell Carmenta Engine which Feature attributes are used to generate the custom symbol. This information is used by Carmenta Engine to cache custom symbols correctly.
// Tell Carmenta Engine that the attribute AnotherAttribute is used
// when the BaseAttribute exists
attributeUsage.AddItem(
"AnotherAttribute",
new Condition("BaseAttribute != null"));
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
IAttributeUsage
Platforms
Windows, Linux, Android
IAttributeUsage Members
The IAttributeUsage type has the following members.
Properties
Name | Description |
---|---|
IsDisposed | Gets a value that tells whether the current IAttributeUsage has been disposed. Inherited from EngineObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current IAttributeUsage represents. Inherited from EngineObject |
Methods
Name | Description |
---|---|
AddItem | Tells Carmenta Engine that the ICustomSymbol implementation uses the specified attribute. |
Clone | Creates a copy of an object. Inherited from EngineObject |
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 |