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

PageLoadingEventArgs() public method

Initialize a new instance of the PageLoadingEventArgs class.
public PageLoadingEventArgs ( KryptonWorkspace workspace, KryptonPage page, XmlReader xmlReader ) : System
workspace KryptonWorkspace Reference to owning workspace control.
page ComponentFactory.Krypton.Navigator.KryptonPage Reference to owning workspace cell page.
xmlReader XmlReader Xml reader for persisting custom data.
return System
        public PageLoadingEventArgs(KryptonWorkspace workspace,
                                    KryptonPage page,
                                    XmlReader xmlReader)
            : base(workspace, xmlReader)
        {
            _page = page;
        }
PageLoadingEventArgs