RtfControlWordInfo.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / RtfControlWordInfo.cs / 1305600 / RtfControlWordInfo.cs

                            //---------------------------------------------------------------------------- 
//
// File: RtfControlWordInfo.cs
//
// Copyright (C) Microsoft Corporation.  All rights reserved. 
//
// Description: Rtf control word information that specify the Rtf control word, 
//              name and flag. 
//
//--------------------------------------------------------------------------- 

namespace System.Windows.Documents
{
    ///  
    /// Rtf control word information that specify the Rtf control word, name and flag.
    ///  
    internal class RtfControlWordInfo 
    {
        // --------------------------------------------------------------------- 
        //
        // Internal Methods
        //
        // --------------------------------------------------------------------- 

        #region Internal Methods 
 
        internal RtfControlWordInfo(RtfControlWord controlWord, string controlName, uint flags)
        { 
            _controlWord = controlWord;
            _controlName = controlName;
            _flags = flags;
        } 

        #endregion Internal Methods 
 
        // ----------------------------------------------------------------------
        // 
        // Internal Properties
        //
        // ---------------------------------------------------------------------
 
        #region Internal Properties
 
        internal RtfControlWord Control 
        {
            get 
            {
                return _controlWord;
            }
        } 

        internal string ControlName 
        { 
            get
            { 
                return _controlName;
            }
        }
 
        internal uint Flags
        { 
            get 
            {
                return _flags; 
            }
        }

        #endregion Internal Properties 

        // ---------------------------------------------------------------------- 
        // 
        // Private Fields
        // 
        // ----------------------------------------------------------------------

        #region Private Fields
 
        private RtfControlWord _controlWord;
        private string _controlName; 
        private uint _flags; 

        #endregion Private Fields 
    }
}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// File: RtfControlWordInfo.cs
//
// Copyright (C) Microsoft Corporation.  All rights reserved. 
//
// Description: Rtf control word information that specify the Rtf control word, 
//              name and flag. 
//
//--------------------------------------------------------------------------- 

namespace System.Windows.Documents
{
    ///  
    /// Rtf control word information that specify the Rtf control word, name and flag.
    ///  
    internal class RtfControlWordInfo 
    {
        // --------------------------------------------------------------------- 
        //
        // Internal Methods
        //
        // --------------------------------------------------------------------- 

        #region Internal Methods 
 
        internal RtfControlWordInfo(RtfControlWord controlWord, string controlName, uint flags)
        { 
            _controlWord = controlWord;
            _controlName = controlName;
            _flags = flags;
        } 

        #endregion Internal Methods 
 
        // ----------------------------------------------------------------------
        // 
        // Internal Properties
        //
        // ---------------------------------------------------------------------
 
        #region Internal Properties
 
        internal RtfControlWord Control 
        {
            get 
            {
                return _controlWord;
            }
        } 

        internal string ControlName 
        { 
            get
            { 
                return _controlName;
            }
        }
 
        internal uint Flags
        { 
            get 
            {
                return _flags; 
            }
        }

        #endregion Internal Properties 

        // ---------------------------------------------------------------------- 
        // 
        // Private Fields
        // 
        // ----------------------------------------------------------------------

        #region Private Fields
 
        private RtfControlWord _controlWord;
        private string _controlName; 
        private uint _flags; 

        #endregion Private Fields 
    }
}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

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