Enum ShapePathFill
How one subpath of a shape outline is filled relative to the shape's own fill (ECMA-376 Part 1 §20.1.10.36 ST_PathFillMode). The shaded modes are how flat DrawingML geometry fakes depth — the lit top of a cylinder, the shaded side of a cube.
public enum ShapePathFill
Fields
Normal = 0Filled with the shape's own fill (a:path fill="norm").
None = 1Not filled at all; the subpath contributes outline only (fill="none").
Lighten = 2Filled with a lightened form of the shape's fill (fill="lighten").
LightenLess = 3Filled with a slightly lightened fill (fill="lightenLess").
Darken = 4Filled with a darkened form of the shape's fill (fill="darken").
DarkenLess = 5Filled with a slightly darkened fill (fill="darkenLess").