VisualizationOperatorMode Enumeration
Specifies the mode a VisualizationOperator works in.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum VisualizationOperatorMode
Values
Value name | Value | Description |
---|---|---|
Append | 0 | Indicates that the visualizers in a VisualizationOperator are appended to any that have already been connected to a feature. This will draw the appended visualizers after the already connected ones. |
Prepend | 1 | Indicates that the visualizers in a VisualizationOperator are inserted before any that have already been associated with a feature. This will make them be drawn before the already connected ones. |
Replace | 2 | Indicates that visualizers that are already connected with a feature are removed before the visualizers in a VisualizationOperator are added to the feature. |
Merge | 3 | Indicates that each visualizer in a VisualizationOperator is merged with each one of the already connected visualizers. All parameters that have been set on the Visualizer, i.e. that differ from the default values, are transferred to the already connected visualizer, overriding the previous values. Merging can only be done if the visualizers are of the same type; if not, the already connected visualizer will be left unchanged. If a Visualizer in a VisualizationOperator cannot be merged with any of the already connected visualizers then the new visualizer is appended to the already connected ones. |
ExtendedMerge | 4 | Works like Merge but also merges more complex visualizer such as the color table, to enable you to for instance replace only one color in a raster data color table (perhaps to make it transparent). |
Platforms
Windows, Linux, Android