ComponentFactory.Krypton.Docking.DockableWorkspaceCellEventArgs.DockableWorkspaceCellEventArgs C# (CSharp) Méthode

DockableWorkspaceCellEventArgs() public méthode

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.
Résultat System
        public DockableWorkspaceCellEventArgs(KryptonDockableWorkspace workspace,
                                              KryptonDockingWorkspace element,
                                              KryptonWorkspaceCell cell)
        {
            _workspace = workspace;
            _element = element;
            _cell = cell;
        }
DockableWorkspaceCellEventArgs