Interface ISvgClipable
- Namespace
- Svg
- Assembly
- Svg.dll
Defines the methods and properties that an SvgElement must implement to support clipping.
public interface ISvgClipable
Properties
ClipPath
Gets or sets the ID of the associated SvgClipPath if one has been specified.
Uri ClipPath { get; set; }
Property Value
ClipRule
Specifies the rule used to define the clipping region when the element is within a SvgClipPath.
SvgClipRule ClipRule { get; set; }
Property Value
Methods
ResetClip(ISvgRenderer)
Resets the clipping region of the specified ISvgRenderer back to where it was before the SetClip(ISvgRenderer) method was called.
void ResetClip(ISvgRenderer renderer)
Parameters
renderer
ISvgRendererThe ISvgRenderer to have its clipping region reset.
SetClip(ISvgRenderer)
Sets the clipping region of the specified ISvgRenderer.
void SetClip(ISvgRenderer renderer)
Parameters
renderer
ISvgRendererThe ISvgRenderer to have its clipping region set.