RasterVisualizer.Color Property
Gets or sets the color table used to draw the raster.
Syntax
public AttributeVariable< System.Drawing.Color > Color { get; set; }
Property Value
Default: Green, R: 0 G: 255 B: 0
The color table used to draw the raster.
Remarks
This is the color table that defines the color for each raster cell value. The table is a mapping from raster cell values to colors. The raster cell values in the table must be in ascending order. Color values can include an alpha value that defines an unique transparency value for that color.
When the color for a raster cell value is looked up, and the value is missing in the table, the result depends on the ColorTableLookup property. If this property is set to Interpolate, the color will be calculated using linear interpolation of the two closest entries in the table. Otherwise the color from the closest previous entry will be used.
Note that color information if often included in the raster itself; in this case this property will not be used. This is the case for RGB and RGBA rasters, and for integer rasters with an attached palette.
Even though this property may be specified as any kind of color attribute variable, it should always be a keyed variable with a table. The key will not actually be used, only the color table will. In Carmenta Studio, a utility type ColorTable will be used instead, but this is just a keyed color attribute variable with an empty key property, and it will be saved as such.
Platforms
Windows, Linux, Android