com.aspose.html.dom.canvas

Class CanvasFillRule

  • java.lang.Object
    • com.aspose.html.internal.ms.System.ValueType<com.aspose.html.internal.ms.System.Enum>
      • com.aspose.html.internal.ms.System.Enum
        • com.aspose.html.dom.canvas.CanvasFillRule


  • public final class CanvasFillRule
    extends com.aspose.html.internal.ms.System.Enum

    This enumeration is used to select the fill rule algorithm by which to determine if a point is inside or outside a path.

    • Nested Class Summary

      • Nested classes/interfaces inherited from class com.aspose.html.internal.ms.System.Enum

        com.aspose.html.internal.ms.System.Enum.AbstractEnum, com.aspose.html.internal.ms.System.Enum.FlaggedEnum, com.aspose.html.internal.ms.System.Enum.ObjectEnum, com.aspose.html.internal.ms.System.Enum.SimpleEnum
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static int EvenOdd
      The "evenodd" value indicates the even-odd rule, wherein a point is considered to be outside a shape if the number of times a half-infinite straight line drawn from that point crosses the shape's path is even.
      static int NonZero
      The value "nonzero" value indicates the non-zero winding rule, wherein a point is considered to be outside a shape if the number of times a half-infinite straight line drawn from that point crosses the shape's path going in one direction is equal to the number of times it crosses the path going in the other direction.
      • Fields inherited from class com.aspose.html.internal.ms.System.Enum

        EnumSeparatorCharArray
    • Method Summary

      • Methods inherited from class com.aspose.html.internal.ms.System.Enum

        Clone, CloneTo, format, format, get_Caption, get_Value, getName, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, register, toObject
    • Field Detail

      • NonZero

        public static final int NonZero

        The value "nonzero" value indicates the non-zero winding rule, wherein a point is considered to be outside a shape if the number of times a half-infinite straight line drawn from that point crosses the shape's path going in one direction is equal to the number of times it crosses the path going in the other direction.

        See Also:
        Constant Field Values
      • EvenOdd

        public static final int EvenOdd

        The "evenodd" value indicates the even-odd rule, wherein a point is considered to be outside a shape if the number of times a half-infinite straight line drawn from that point crosses the shape's path is even.

        See Also:
        Constant Field Values