Files
inventory-plus-plus/server/ui/svg/length_adjust.go
T
angel 82efe19ae0
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
prototyped svg reports
2026-08-19 23:19:41 -06:00

24 lines
361 B
Go

package svg
type (
LengthAdjust int
)
const (
LengthAdjustSpacing LengthAdjust = iota
LengthAdjustSpacingAndGlyph
)
func (LengthAdjust) PrintTag() string {
return "lengthAdjust"
}
func (l LengthAdjust) PrintValue() (string, bool) {
switch l {
case LengthAdjustSpacingAndGlyph:
return "spacingAndGlyphs", true
default:
return "spacing", true
}
}