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

DockableWorkspaceCellEventArgs() public method

Initialize a new instance of the DockableWorkspaceCellEventArgs class.
public DockableWorkspaceCellEventArgs ( KryptonDockableWorkspace workspace, KryptonDockingWorkspace element, KryptonWorkspaceCell cell ) : System
workspace KryptonDockableWorkspace Reference to existing dockable workspace control instance.
element KryptonDockingWorkspace Reference to docking workspace element that is managing the dockable workspace control.
cell KryptonWorkspaceCell Reference to workspace control cell instance.
return System
        public DockableWorkspaceCellEventArgs(KryptonDockableWorkspace workspace,
                                              KryptonDockingWorkspace element,
                                              KryptonWorkspaceCell cell)
        {
            _workspace = workspace;
            _element = element;
            _cell = cell;
        }
DockableWorkspaceCellEventArgs