Class SvgRenderer
Inheritance
System.Object
SvgRenderer
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.Svg
Assembly: TelerikCommon.dll
Syntax
public sealed class SvgRenderer : ISvgRenderer, IDisposable, IGraphicsProvider
Properties
DpiY
SmoothingMode
Declaration
public SmoothingMode SmoothingMode { get; set; }
Property Value
System.Drawing.Drawing2D.SmoothingMode
|
Implements
Transform
Declaration
public Matrix Transform { get; set; }
Property Value
System.Drawing.Drawing2D.Matrix
|
Implements
Methods
Dispose()
Declaration
public void Dispose()
Implements
System.IDisposable.Dispose()
DrawImage(Image, RectangleF, RectangleF, GraphicsUnit)
Declaration
public void DrawImage(Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit graphicsUnit)
Parameters
System.Drawing.Image
image
|
System.Drawing.RectangleF
destRect
|
System.Drawing.RectangleF
srcRect
|
System.Drawing.GraphicsUnit
graphicsUnit
|
Implements
DrawImage(Image, RectangleF, RectangleF, GraphicsUnit, Single)
Declaration
public void DrawImage(Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit graphicsUnit, float opacity)
Parameters
System.Drawing.Image
image
|
System.Drawing.RectangleF
destRect
|
System.Drawing.RectangleF
srcRect
|
System.Drawing.GraphicsUnit
graphicsUnit
|
System.Single
opacity
|
Implements
DrawImageUnscaled(Image, Point)
Declaration
public void DrawImageUnscaled(Image image, Point location)
Parameters
System.Drawing.Image
image
|
System.Drawing.Point
location
|
Implements
DrawPath(Pen, GraphicsPath)
Declaration
public void DrawPath(Pen pen, GraphicsPath path)
Parameters
System.Drawing.Pen
pen
|
System.Drawing.Drawing2D.GraphicsPath
path
|
Implements
FillPath(Brush, GraphicsPath)
Declaration
public void FillPath(Brush brush, GraphicsPath path)
Parameters
System.Drawing.Brush
brush
|
System.Drawing.Drawing2D.GraphicsPath
path
|
Implements
FromGraphics(Graphics)
Declaration
public static ISvgRenderer FromGraphics(Graphics graphics)
Parameters
System.Drawing.Graphics
graphics
|
Returns
ISvgRenderer
|
FromImage(Image)
Declaration
public static ISvgRenderer FromImage(Image image)
Parameters
System.Drawing.Image
image
|
Returns
ISvgRenderer
|
FromNull()
GetBoundable()
GetClip()
PopBoundable()
RotateTransform(Single, MatrixOrder)
Declaration
public void RotateTransform(float fAngle, MatrixOrder order)
Parameters
System.Single
fAngle
|
System.Drawing.Drawing2D.MatrixOrder
order
|
Implements
ScaleTransform(Single, Single, MatrixOrder)
Declaration
public void ScaleTransform(float sx, float sy, MatrixOrder order)
Parameters
System.Single
sx
|
System.Single
sy
|
System.Drawing.Drawing2D.MatrixOrder
order
|
Implements
SetBoundable(ISvgBoundable)
Declaration
public void SetBoundable(ISvgBoundable boundable)
Parameters
ISvgBoundable
boundable
|
Implements
SetClip(Region, CombineMode)
Declaration
public void SetClip(Region region, CombineMode combineMode)
Parameters
System.Drawing.Region
region
|
System.Drawing.Drawing2D.CombineMode
combineMode
|
Implements
TranslateTransform(Single, Single, MatrixOrder)
Declaration
public void TranslateTransform(float dx, float dy, MatrixOrder order)
Parameters
System.Single
dx
|
System.Single
dy
|
System.Drawing.Drawing2D.MatrixOrder
order
|
Implements
Explicit Interface Implementations
IGraphicsProvider.GetGraphics()
Declaration
Graphics IGraphicsProvider.GetGraphics()
Returns
System.Drawing.Graphics
|