// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { using Perspex.Interactivity; public class RequestBringIntoViewEventArgs : RoutedEventArgs { public IVisual TargetObject { get; set; } public Rect TargetRect { get; set; } } }