EdgeMode 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.
Determines how the edges of non-text drawing primitives are rendered.
public enum class EdgeMode
public enum EdgeMode
type EdgeMode =
Public Enum EdgeMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Unspecified | 0 | No edge mode is specified. Do not alter the current edge mode of non-text drawing primitives. This is the default value. |
Aliased | 1 | Render the edges of non-text drawing primitives as aliased edges. |
Examples
The following example shows how to use the RenderOptions.SetEdgeMode method to set the edge mode for a drawing primitive to Aliased
:
// Set the edge mode to aliased for the visual and any descendant drawing primitives it has.
RenderOptions.SetEdgeMode((DependencyObject)myVisual, EdgeMode.Aliased);
' Set the edge mode to aliased for the visual and any descendant drawing primitives it has.
RenderOptions.SetEdgeMode(CType(myVisual, DependencyObject), EdgeMode.Aliased)
Remarks
Text objects are always displayed by using anti aliasing and are not affected by setting the edge mode value. The default value for non-text drawing primitives, such as Ellipse and Polygon, is Unspecified
.
When you set the edge mode value of a visual object, all the child drawing primitives of that visual object are set to the same EdgeMode
value.
Applies to
.NET