public static bool GetDockEnabled(UIComponentDockContainer source)
 {
     return((bool)source.GetValue(DockEnabledProperty));
 }
 public static bool GetCollapse(UIComponentDockContainer source)
 {
     return((bool)source.GetValue(CollapseProperty));
 }
 public static UIComponentConfiguration GetDockComponent(UIComponentDockContainer source)
 {
     return((UIComponentConfiguration)source.GetValue(DockComponentProperty));
 }
 public static string GetDockLocation(UIComponentDockContainer source)
 {
     return((string)source.GetValue(DockLocationProperty));
 }