public static bool GetIsFocusedHeader(DataGridColumnHeader obj) { if (obj == null) { throw new ArgumentNullException("obj"); } return((bool)obj.GetValue(IsFocusedHeaderProperty)); }
public static bool GetIsEnabled(DataGridColumnHeader header) { return((bool)header.GetValue(IsEnabledProperty)); }
public static bool GetIsLastVisibleColumnHeader(DataGridColumnHeader columnHeader) { return((bool)columnHeader.GetValue(IsLastVisibleColumnHeaderProperty)); }
public static Visibility GetComputedSeparatorVisibility(DataGridColumnHeader header) { return((Visibility)header.GetValue(ComputedSeparatorVisibilityProperty)); }