コード例 #1
0
        /// <summary>
        /// column move
        /// </summary>
        internal void Move()
        {
            var ea = new EventArgs();

            if (MoveHandler != null)
            {
                Delegate[] aHandlers = MoveHandler.GetInvocationList();

                foreach (SectionTrackHandler handler in aHandlers)
                {
                    try
                    {
                        handler(this, ea);
                    }
                    catch (Exception)
                    {
                    }
                }
            }
        }