Example #1
0
 /// <summary>
 /// Create a new instance of the FlowLayoutEngine object and set the container to use
 /// </summary>
 /// <param name="container">The container on which to apply the Layout</param>
 public FlowLayoutEngine(GlyphContainer container) : base(container)
 {
 }
Example #2
0
 /// <summary>
 /// Create a new instance of the CanvasLayoutEngine object and set the container to use
 /// </summary>
 /// <param name="container">The container on which to apply the Layout</param>
 public CanvasLayoutEngine(GlyphContainer container) : this()
 {
     _glyphContainer = container;
 }