feat(IAnnotation): Hinzufügen und Implementieren der Eigenschaften BackgroundColor, BorderColor, BorderStyle und BorderWidth.

- Hintergrund mit neuen Eigenschaften in Annotations.js binden
This commit is contained in:
Developer 02
2025-04-24 00:36:24 +02:00
parent 8b505ae39a
commit 54f39103e1
6 changed files with 58 additions and 7 deletions

View File

@@ -11,4 +11,12 @@ public interface IAnnotation
double Left { get; }
double Top { get; }
Color? BackgroundColor { get; }
Color? BorderColor { get; }
string? BorderStyle { get; }
int? BorderWidth { get; }
}