ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroup.SetSolutionSize C# (CSharp) Method

SetSolutionSize() public method

Update the group with the provided sizing solution.
public SetSolutionSize ( ItemSizeWidth size ) : void
size ItemSizeWidth Solution size.
return void
        public void SetSolutionSize(ItemSizeWidth[] size)
        {
            // Should we become collapsed?
            Collapsed = (size == null);

            // Pass solution onto the contained view
            IRibbonViewGroupSize viewSize = (IRibbonViewGroupSize)_layoutNormalContent;
            viewSize.SetSolutionSize(size);
        }