ComponentFactory.Krypton.Workspace.KryptonWorkspaceSequence.KryptonWorkspaceSequence C# (CSharp) Method

KryptonWorkspaceSequence() public method

Initialise a new instance of the KryptonWorkspaceSequence class.
public KryptonWorkspaceSequence ( Orientation orientation ) : System
orientation Orientation Initial orientation of the children.
return System
        public KryptonWorkspaceSequence(Orientation orientation)
        {
            _orientation = orientation;

            // Create the child collection for holding items
            _children = new KryptonWorkspaceCollection(this);
            _children.PropertyChanged += new PropertyChangedEventHandler(OnChildrenPropertyChanged);
            _children.MaximizeRestoreClicked += new EventHandler(OnChildrenMaximizeRestoreClicked);

            // Default properties
            _setVisible = true;
            _starSize = new StarSize();
            _actualSize = Size.Empty;
            _uniqueName = CommonHelper.UniqueString;
        }

Same methods

KryptonWorkspaceSequence::KryptonWorkspaceSequence ( ) : System