ActiveDocumentEvent.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / ActiveDocumentEvent.cs / 1305376 / ActiveDocumentEvent.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 */ 
namespace System.ComponentModel.Design {
    using System; 
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Security.Permissions;
    using Microsoft.Win32; 

    ///  
    /// Provides data for the  
    /// event.
    ///  
    [HostProtection(SharedState = true)]
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
    public class ActiveDesignerEventArgs : EventArgs { 
        /// 
        ///     The document that is losing activation. 
        ///  
        private readonly IDesignerHost oldDesigner;
 
        /// 
        ///     The document that is gaining activation.
        /// 
        private readonly IDesignerHost newDesigner; 

        ///  
        /// Initializes a new instance of the  
        /// class.
        ///  
        public ActiveDesignerEventArgs(IDesignerHost oldDesigner, IDesignerHost newDesigner) {
            this.oldDesigner = oldDesigner;
            this.newDesigner = newDesigner;
        } 

        ///  
        ///     
        ///       Gets or
        ///       sets the document that is losing activation. 
        ///    
        /// 
        public IDesignerHost OldDesigner {
            get { 
                return oldDesigner;
            } 
        } 

        ///  
        ///    
        ///       Gets or
        ///       sets the document that is gaining activation.
        ///     
        /// 
        public IDesignerHost NewDesigner { 
            get { 
                return newDesigner;
            } 
        }

    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK