Beispiel #1
0
 /// <summary>
 ///     Imports layouts from another layout collection.
 /// </summary>
 /// <param name="other">The collection to import layouts from.</param>
 public void Import(StructureLayoutCollection other)
 {
     foreach (var layout in other._layouts)
     {
         AddLayout(layout.Key, layout.Value);
     }
 }
Beispiel #2
0
 /// <summary>
 ///     Adds a collection of layouts to the collection.
 /// </summary>
 /// <param name="layouts">The layouts to add.</param>
 public void AddLayouts(StructureLayoutCollection layouts)
 {
     foreach (var layout in layouts._layouts)
     {
         AddLayout(layout.Key, layout.Value);
     }
 }
 /// <summary>
 ///     Imports layouts from another layout collection.
 /// </summary>
 /// <param name="other">The collection to import layouts from.</param>
 public void Import(StructureLayoutCollection other)
 {
     foreach (var layout in other._layouts)
         AddLayout(layout.Key, layout.Value);
 }
 /// <summary>
 ///     Adds a collection of layouts to the collection.
 /// </summary>
 /// <param name="layouts">The layouts to add.</param>
 public void AddLayouts(StructureLayoutCollection layouts)
 {
     foreach (var layout in layouts._layouts)
         AddLayout(layout.Key, layout.Value);
 }