Files
vms2016_kadisp/Viewer/TrendViewer/UControl/TrendCtrlII/MethodExts.cs
2024-11-26 20:15:16 +09:00

24 lines
512 B
C#

using System;
using System.Xml;
using System.Linq;
using System.Xml.Linq;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using AR;
using System.IO;
using System.Text;
using System.Drawing;
namespace TrendCtrlII
{
public static class MethodExts
{
public static void DrawRectangle(this System.Drawing.Graphics graphics, Pen pen, System.Drawing.RectangleF rect)
{
graphics.DrawRectangle(pen, rect.X, rect.Y, rect.Width, rect.Height);
}
}
}