aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/RealTimeGraphX/EventArguments/TransformChangedEventArgs.cs
blob: 42f7e29c667075d02ea41c192949343eb6404530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace RealTimeGraphX.EventArguments
{
    /// <summary>
    /// Represents an <see cref="IGraphPainter.Transform"/> changed event arguments. 
    /// </summary>
    /// <seealso cref="System.EventArgs" />
    public class TransformChangedEventArgs : EventArgs
    {
        /// <summary>
        /// Gets or sets the graph transform.
        /// </summary>
        public GraphTransform Transform { get; set; }
    }
}