添加项目文件。
This commit is contained in:
15
DotNet.Revit.Hook/DoubleClickElementEventArgs.cs
Normal file
15
DotNet.Revit.Hook/DoubleClickElementEventArgs.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Autodesk.Revit.DB;
|
||||
using System;
|
||||
|
||||
namespace DotNet.Revit.Hook
|
||||
{
|
||||
public class DoubleClickElementEventArgs : EventArgs
|
||||
{
|
||||
public DoubleClickElementEventArgs(Element elem)
|
||||
{
|
||||
this.Element = elem;
|
||||
}
|
||||
|
||||
public Element Element { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user