CustomSymbolCacheHint Enumeration
Specifies when the visualization generated by a custom symbol may be cached and reused.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECustomObjects assembly)
Syntax
public enum CustomSymbolCacheHint
Values
Value name | Value | Description |
---|---|---|
Never | 0 | The visualization should never be cached. |
Position | 1 | The visualization may be cached. If the position on screen changes, the cached visualization will be redrawn at the new position. If view scale or rotation changes, Carmenta Engine will call the custom symbol to redraw the feature. |
Scale | 2 | The visualization may be cached. If the view scale changes, the cached visualization will be redrawn and scaled appropriately. If view position or rotation changes, Carmenta Engine will call the custom symbol to redraw the feature. |
Rotation | 4 | The visualization may be cached. If the view rotation changes, the cached visualization will be redrawn and rotated appropriately. If view position or scale changes, Carmenta Engine will call the custom symbol to redraw the feature. |
Always | 7 | A combination of Position, Scale and Rotation. The visualization will be cached and reused even if position, scale or rotation changes. |
AsBitmap | 8 | If this flag is set, Carmenta Engine will render the symbol onto a temporary bitmap, and use the bitmap for drawing to the screen. This may be more efficient for complicated symbols. This works in conjunction with the other cache flags; the bitmap will be cached as long as the symbol is cached. |
Remarks
This is an enumeration type, used as return value from the ICustomSymbol.Draw and ICustomNativeSymbol.Draw methods of custom symbols. It indicates if and how the visualization created by the symbol may be cached and reused, if the position, scale or rotation of the symbol changes. It can also be used to indicate that the visualization may be cached as a bitmap, which can improve performance significantly if the symbol is drawn many times.
The enumeration is in fact a bit field, several values may be used together.
Platforms
Windows, Linux, Android