Declaration
object HighlightCells
Summary
Paints some cells with a background color.
Remarks
Possible values for this field are:
-
Any ICollection (for example, a HashSet<T>) containing the cells. This
will color each cell in the color specified by SvgInstructions.HighlightColor. Cells that are not part
of this structure, or any other objects, are ignored.
-
Any IDictionary in which the keys are the cells. The values can be SvgColor objects, or they are converted to strings and assumed to be SVG colors without
opacity. Cells that are not part of this structure, or any other keys, are ignored.
-
A
Func<object, SvgColor>
, Func<object, string>
, or
Func<object, object>
which returns the color information for each cell. The function will
be invoked for every cell in the structure.