(RenderContext context, string renderText, int yPrice, Color color)
| 64 | public bool Show_Euro { get => bShowEuro; set { bShowEuro = value; RecalculateValues(); } } |
| 65 | |
| 66 | private void DrawString(RenderContext context, string renderText, int yPrice, Color color) |
| 67 | { |
| 68 | var textSize = context.MeasureString(renderText, new RenderFont("Arial", fFontSize)); |
| 69 | context.DrawString(renderText, new RenderFont("Arial", fFontSize), color, Container.Region.Right - textSize.Width - 5, yPrice - textSize.Height); |
| 70 | } |
| 71 | |
| 72 | protected override void OnRender(RenderContext context, DrawingLayouts layout) |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected