CAEdgeAntialiasingMask Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Flags used to determine what side of a layer should be antialiased.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum CAEdgeAntialiasingMask
type CAEdgeAntialiasingMask =
- Inheritance
-
CAEdgeAntialiasingMask
- Attributes
Fields
Name | Value | Description |
---|---|---|
LeftEdge | 1 | Left side of the layer is antialiased. |
RightEdge | 2 | Right side of the layer is antialiased. |
LeftRightEdges | 3 | Left and right sides of the layer are antialiased. |
BottomEdge | 4 | Bottom side of the layer is antialiased. |
TopEdge | 8 | Top side of the layer is antialiased. |
TopBottomEdges | 12 | Top and bottom side of the layer are antialiased. |
All | 15 | All sides of the layer are antialiased. |