Exemplo n.º 1
0
 public static IComparer GetComparer(DataGridColumn element)
 {
     return (IComparer)element.GetValue(ComparerProperty);
 }
Exemplo n.º 2
0
 public static ICustomSorter GetCustomSorter(DataGridColumn gridColumn)
 {
     return (ICustomSorter)gridColumn.GetValue(CustomSorterProperty);
 }
 public static string GetColumnId(DataGridColumn element)
 {
     return (string)element.GetValue(ColumnIdProperty);
 }
 public static bool GetCanUserHideColumn(DataGridColumn dataGridColumn)
 {
     return (bool)dataGridColumn.GetValue(CanUserHideColumnProperty);
 }
 public static string GetFooterColumnId(DataGridColumn elementNameColumn)
 {
     return (string) elementNameColumn.GetValue(FooterColumnIdProperty);
 }
Exemplo n.º 6
0
 public static int GetWidthWeight(DataGridColumn column)
 {
     return (int)column.GetValue(WidthWeightProperty);
 }
 public static bool GetIsFilterEnable(DataGridColumn column)
 {
     return (bool) column.GetValue(IsFilterEnableProperty);
 }
Exemplo n.º 8
0
 public static string GetFormatForExport(DataGridColumn element)
 {
     return (string)element.GetValue(FormatForExportProperty);
 }
Exemplo n.º 9
0
 public static Boolean GetIsExported(DataGridColumn element)
 {
     return (Boolean)element.GetValue(IsExportedProperty);
 }
Exemplo n.º 10
0
 /* public void SetPathForExport(DataGridColumn element, string value)
  {
      element.SetValue(PathForExportProperty, value);
  }*/
 public string GetPathForExport(DataGridColumn element)
 {
     return (string)element.GetValue(PathForExportProperty);
 }