添加项目文件。
This commit is contained in:
22
RevitTools.DrawTool/IDisplay.cs
Normal file
22
RevitTools.DrawTool/IDisplay.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Drawing;
|
||||
|
||||
namespace RevitTools.DrawTool
|
||||
{
|
||||
/// <summary>
|
||||
/// 管理接口
|
||||
/// </summary>
|
||||
public interface IDisplay
|
||||
{
|
||||
void AddObj(DrawBase draw);
|
||||
|
||||
void Clear();
|
||||
|
||||
void DeleteObj(DrawBase db);
|
||||
|
||||
DrawBase GetObj(Point e);
|
||||
|
||||
void MoveAllObj(int dx, int dy);
|
||||
|
||||
void MoveObj(DrawBase db, int dx, int dy);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user