//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Interface to abstract away the difference between a DataGridCell and a DataGridColumnHeader /// internal interface IProvideDataGridColumn { DataGridColumn Column { get; } } }