ComponentFactory.Krypton.Docking.FloatspaceCellEventArgs.FloatspaceCellEventArgs C# (CSharp) Method

FloatspaceCellEventArgs() public method

Initialize a new instance of the FloatspaceCellEventArgs class.
public FloatspaceCellEventArgs ( KryptonFloatspace floatspace, KryptonDockingFloatspace element, KryptonWorkspaceCell cell ) : System
floatspace KryptonFloatspace Reference to existing floatspace control instance.
element KryptonDockingFloatspace Reference to docking floatspace element that is managing the floatspace control.
cell KryptonWorkspaceCell Reference tofloatspace control cell instance.
return System
        public FloatspaceCellEventArgs(KryptonFloatspace floatspace,
                                       KryptonDockingFloatspace element,
                                       KryptonWorkspaceCell cell)
        {
            _floatspace = floatspace;
            _element = element;
            _cell = cell;
        }
FloatspaceCellEventArgs