RenderOptions.SetEdgeMode(DependencyObject, EdgeMode) Method
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.
Sets the value of the EdgeMode attached property on a specified dependency object.
public:
static void SetEdgeMode(System::Windows::DependencyObject ^ target, System::Windows::Media::EdgeMode edgeMode);
public static void SetEdgeMode (System.Windows.DependencyObject target, System.Windows.Media.EdgeMode edgeMode);
static member SetEdgeMode : System.Windows.DependencyObject * System.Windows.Media.EdgeMode -> unit
Public Shared Sub SetEdgeMode (target As DependencyObject, edgeMode As EdgeMode)
Parameters
- target
- DependencyObject
The dependency object on which to set the value of the EdgeMode property.
- edgeMode
- EdgeMode
The new value to set the property to.
Exceptions
The specified target
is null
.
Examples
The following example shows how to use the SetEdgeMode method to set the edge mode for a visual object 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 with anti-aliasing, and are unaffected by setting the edge mode value. When you set the edge mode value of a visual object, all the descendant drawing primitives of the visual object are set to the same edge mode value.