My shapes are resizing to the vertical size of the largest shape in the row. I have confirmed this by reducing the size of the largest shape and the smaller shapes track to this new size. Is this behavior controllable? If so how? Here is the code I am using for layout.
Thanks,
TK
NFlowLayout layout = new NFlowLayout();
layout.Resolution = nDrawingDocumentMain.Resolution;
layout.MeasurementUnit = nDrawingDocumentMain.MeasurementUnit;
layout.Direction = LayoutDirection.LeftToRight;
layout.HorizontalSpacing = 100f;
layout.VerticalSpacing = 100f;
NNodeList shapes = nDrawingDocumentMain.ActiveLayer.Children(NFilters.Shape2D);
layout.Layout(shapes, new NDrawingLayoutContext(nDrawingDocumentMain));