From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。
---
HotelPms.Share.Windows/Report/Border.cs | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/HotelPms.Share.Windows/Report/Border.cs b/HotelPms.Share.Windows/Report/Border.cs
new file mode 100644
index 0000000..d3bdff7
--- /dev/null
+++ b/HotelPms.Share.Windows/Report/Border.cs
@@ -0,0 +1,55 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Drawing.Drawing2D;
+
+namespace HotelPms.Share.Windows.Report
+{
+ public class Border
+ {
+ public enum TypeIndex : int
+ {
+ Left = 0,
+ Right,
+ Top,
+ Bottom,
+ }
+
+ private TypeIndex m_Index = TypeIndex.Left;
+
+ public TypeIndex Index
+ {
+ get { return m_Index; }
+ set { m_Index = value; }
+ }
+
+ private bool m_Visible = false;
+
+ public bool Visible
+ {
+ get { return m_Visible; }
+ set { m_Visible = value; }
+ }
+
+ private DashStyle m_DashStyle = DashStyle.Solid;
+
+ public DashStyle DashStyle
+ {
+ get { return m_DashStyle; }
+ set { m_DashStyle = value; }
+ }
+
+ private float m_Weight = 1;
+
+ public float Weight
+ {
+ get { return m_Weight; }
+ set { m_Weight = value; }
+ }
+
+ public Border(TypeIndex index)
+ {
+ m_Index = index;
+ }
+ }
+}
--
Gitblit v1.10.0