public static void SetWidth(RendererBase source, double value) { source.SetValue(WidthProperty, value); }
public static void SetBitmap(RendererBase source, WriteableBitmap value) { source.SetValue(BitmapProperty, value); }
public static double GetWidth(RendererBase source) { return((double)source.GetValue(WidthProperty)); }
public static void SetCore(RendererBase source, ICore value) { source.SetValue(CoreProperty, value); }
public static WriteableBitmap GetBitmap(RendererBase source) { return((WriteableBitmap)source.GetValue(BitmapProperty)); }
public static void SetColor(RendererBase source, Color value) { source.SetValue(ColorProperty, value); }
public static ICore GetCore(RendererBase source) { return((ICore)source.GetValue(CoreProperty)); }
public static Color GetColor(RendererBase source) { return((Color)source.GetValue(ColorProperty)); }
protected static void SetViewbox(RendererBase source, Rect value) { source.SetValue(ViewboxProperty, value); }
public static Rect GetViewbox(RendererBase source) { return((Rect)source.GetValue(ViewboxProperty)); }
public static void SetHeight(RendererBase source, double value) { source.SetValue(HeightProperty, value); }
public static double GetHeight(RendererBase source) { return((double)source.GetValue(HeightProperty)); }