/// <summary>
        ///     Method which tries to scroll a cell for given index into the scroll view
        /// </summary>
        /// <param name="index"></param>
        internal void ScrollCellIntoView(int index)
        {
            DataGridCellsPanel itemsHost = InternalItemsHost as DataGridCellsPanel;

            if (itemsHost != null)
            {
                itemsHost.InternalBringIndexIntoView(index);
                return;
            }
        }
Beispiel #2
0
        // Token: 0x06005CAA RID: 23722 RVA: 0x001A112C File Offset: 0x0019F32C
        internal void ScrollCellIntoView(int index)
        {
            DataGridCellsPanel dataGridCellsPanel = this.InternalItemsHost as DataGridCellsPanel;

            if (dataGridCellsPanel != null)
            {
                dataGridCellsPanel.InternalBringIndexIntoView(index);
                return;
            }
        }