public static void SetDockEnabled(UIComponentDockContainer source, bool value)
 {
     source.SetValue(DockEnabledProperty, value);
 }
 public static void SetDockComponent(UIComponentDockContainer source, UIComponentConfiguration value)
 {
     source.SetValue(DockComponentProperty, value);
 }
 public static bool GetDockEnabled(UIComponentDockContainer source)
 {
     return((bool)source.GetValue(DockEnabledProperty));
 }
 public static UIComponentConfiguration GetDockComponent(UIComponentDockContainer source)
 {
     return((UIComponentConfiguration)source.GetValue(DockComponentProperty));
 }
 public static void SetCollapse(UIComponentDockContainer source, bool value)
 {
     source.SetValue(CollapseProperty, value);
 }
 public static bool GetCollapse(UIComponentDockContainer source)
 {
     return((bool)source.GetValue(CollapseProperty));
 }
 public static void SetDockLocation(UIComponentDockContainer source, string value)
 {
     source.SetValue(DockLocationProperty, value);
 }
 public static string GetDockLocation(UIComponentDockContainer source)
 {
     return((string)source.GetValue(DockLocationProperty));
 }