symbol proxy

This commit is contained in:
Pilzinsel64
2025-08-21 07:56:29 +02:00
parent dc25063ca1
commit 9a0f645e01
9 changed files with 107 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
using Pilz.UI.Symbols;
using Pilz.UI.WinForms.Symbols;
using Telerik.WinControls;
namespace Pilz.UI.WinForms.Telerik.Symbols;
public interface IRadSymbolProxy : ISymbolProxy
{
Image GetImageColored(Size size, Color color);
Image GetImageColored(SymbolSize size, Color color);
RadSvgImage GetSvgImage(Size size);
RadSvgImage GetSvgImage(SymbolSize size);
RadSvgImage GetSvgImageColored(Size size, Color color);
RadSvgImage GetSvgImageColored(SymbolSize size, Color color);
}