ContentPosition.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Documents / ContentPosition.cs / 1 / ContentPosition.cs

                            //---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// File: ContentPosition.cs 
//
// Description: Represents a certain content's position. This position is 
//              content specific. 
//
// History: 
//  05/05/2003 : grzegorz - created.
//  09/28/2004 : grzegorz - updated pagination model.
//  08/29/2005 : grzegorz - updated pagination model.
// 
//---------------------------------------------------------------------------
 
namespace System.Windows.Documents 
{
    ///  
    /// Represents a certain content's position. This position is content
    /// specific.
    /// 
    public abstract class ContentPosition 
    {
        ///  
        /// Static representation of a non-existent ContentPosition. 
        /// 
        public static readonly ContentPosition Missing = new MissingContentPosition(); 

        #region Missing

        ///  
        /// Representation of a non-existent ContentPosition.
        ///  
        private class MissingContentPosition : ContentPosition {} 

        #endregion Missing 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// File: ContentPosition.cs 
//
// Description: Represents a certain content's position. This position is 
//              content specific. 
//
// History: 
//  05/05/2003 : grzegorz - created.
//  09/28/2004 : grzegorz - updated pagination model.
//  08/29/2005 : grzegorz - updated pagination model.
// 
//---------------------------------------------------------------------------
 
namespace System.Windows.Documents 
{
    ///  
    /// Represents a certain content's position. This position is content
    /// specific.
    /// 
    public abstract class ContentPosition 
    {
        ///  
        /// Static representation of a non-existent ContentPosition. 
        /// 
        public static readonly ContentPosition Missing = new MissingContentPosition(); 

        #region Missing

        ///  
        /// Representation of a non-existent ContentPosition.
        ///  
        private class MissingContentPosition : ContentPosition {} 

        #endregion Missing 
    }
}

// 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