Files
ENIG/Cs_HMI/SubProject/AGVMapControl/Models/MapText.cs
chi 34130e9c86 add mapcontrol
add remote path(gitlab)
2025-05-22 16:21:56 +09:00

14 lines
362 B
C#

using System.Drawing;
using System;
using System.Collections.Generic;
namespace AGVMapControl.Models
{
public class MapText
{
public Point Location { get; set; }
public string Text { get; set; }
public Color TextColor { get; set; }
public Color BackgroundColor { get; set; }
public Font Font { get; set; }
}
}