EdgeMode Enum

Definition

Determines how the edges of non-text drawing primitives are rendered.

public enum class EdgeMode
public enum EdgeMode
type EdgeMode = 
Public Enum EdgeMode
Inheritance
EdgeMode

Fields

Aliased 1

Render the edges of non-text drawing primitives as aliased edges.

Unspecified 0

No edge mode is specified. Do not alter the current edge mode of non-text drawing primitives. This is the default value.

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