2.2.2.14 MilPathFigureFlags

A MilPathFigureFlags enumeration specifies features of a path figure.

 typedef  enum
 {
   PathFigureFlagsHasGaps = 0x00000001,
   PathFigureFlagsIsClosed = 0x00000004,
   PathFigureFlagsIsFillable = 0x00000008,
   PathFigureFlagsIsRectangleData = 0x00000010
 } MilPathFigureFlags;

PathFigureFlagsHasGaps:  The path figure has segments marked with the PathSegmentFlagsIsAGap flag.

PathFigureFlagsIsClosed:  The path figure has a last segment end point equaling the path figure's start point, and there MUST be a line join connecting the last segment to the first.

PathFigureFlagsIsFillable:  The path figure MUST be filled if the path geometry is filled with a brush.

PathFigureFlagsIsRectangleData:  The path figure is an axis-aligned rectangle.