using System;
using System.Collections.Generic;
using System.Text;
namespace Heckel.EasyTools.Diagramming{
public class DiagramInitializedEventArgs: EventArgs
{
private int _xOffset = -1;
public int XOffSet
{
get { return _xOffset; }
}
private int _yOffset = -1;
public int YOffSet
{
get { return _yOffset; }
}
public DiagramInitializedEventArgs(int xOffset, int yOffset)
{
_xOffset = xOffset;
_yOffset = yOffset;
}
}
}
|