Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / PageContentCollection.cs / 1 / PageContentCollection.cs
//----------------------------------------------------------------------------
//
// Copyright (C) 2004 by Microsoft Corporation. All rights reserved.
//
//
// Description:
// Implements the PageContentCollection element
//
// History:
// 02/26/2004 - [....] ([....]) - Created.
//
//
//---------------------------------------------------------------------------
namespace System.Windows.Documents
{
using System;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Windows.Markup;
//=====================================================================
///
/// PageContentCollection is an ordered collection of PageContent
///
public sealed class PageContentCollection : IEnumerable
{
//-------------------------------------------------------------------
//
// Connstructors
//
//----------------------------------------------------------------------
#region Constructors
internal PageContentCollection(FixedDocument logicalParent)
{
_logicalParent = logicalParent;
_internalList = new List();
}
#endregion Constructors
//-------------------------------------------------------------------
//
// Public Methods
//
//----------------------------------------------------------------------
#region Public Methods
///
/// Append a new PageContent to end of this collection
///
/// New PageContent to be appended
/// The index this new PageContent is appended at
///
/// Thrown if the argument is null
///
///
/// Thrown if the page has been added to a PageContentCollection previously
///
public int Add(PageContent newPageContent)
{
if (newPageContent == null)
{
throw new ArgumentNullException("newPageContent");
}
_logicalParent.AddLogicalChild(newPageContent);
InternalList.Add(newPageContent);
int index = InternalList.Count - 1;
_logicalParent.OnPageContentAppended(index);
return index;
}
#endregion Public Methods
#region IEnumerable
///
///
///
public IEnumerator GetEnumerator()
{
return InternalList.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return ((IEnumerable)this).GetEnumerator();
}
#endregion IEnumerable
//--------------------------------------------------------------------
//
// Public Properties
//
//---------------------------------------------------------------------
#region Public Properties
///
/// Indexer to retrieve individual PageContent contained within this collection
///
public PageContent this[int pageIndex]
{
get
{
return InternalList[pageIndex];
}
}
///
/// Number of PageContent items in this collection
///
public int Count
{
get { return InternalList.Count; }
}
#endregion Public Properties
//--------------------------------------------------------------------
//
// Public Events
//
//---------------------------------------------------------------------
#region Public Event
#endregion Public Event
//-------------------------------------------------------------------
//
// Internal Methods
//
//---------------------------------------------------------------------
#region Internal Methods
internal int IndexOf(PageContent pc)
{
return InternalList.IndexOf(pc);
}
#endregion Internal Methods
//--------------------------------------------------------------------
//
// Internal Properties
//
//---------------------------------------------------------------------
//--------------------------------------------------------------------
//
// private Properties
//
//----------------------------------------------------------------------
#region Private Properties
// Aggregated IList
private IList InternalList
{
get
{
return _internalList;
}
}
#endregion Private Properties
//-------------------------------------------------------------------
//
// Private Methods
//
//----------------------------------------------------------------------
#region Private Methods
#endregion Private Methods
//-------------------------------------------------------------------
//
// Private Fields
//
//---------------------------------------------------------------------
#region Private Fields
private FixedDocument _logicalParent;
private List _internalList;
#endregion Private Fields
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PermissionListSet.cs
- ControlBuilder.cs
- VectorCollectionValueSerializer.cs
- WorkflowQueueInfo.cs
- ReceiveContext.cs
- XPathNodeHelper.cs
- WorkflowServiceHostFactory.cs
- SqlFileStream.cs
- FormsIdentity.cs
- Symbol.cs
- Transform3DCollection.cs
- UnmanagedMemoryStream.cs
- AccessorTable.cs
- TcpAppDomainProtocolHandler.cs
- SamlNameIdentifierClaimResource.cs
- BitmapVisualManager.cs
- AutomationPropertyInfo.cs
- InputBuffer.cs
- RadioButtonBaseAdapter.cs
- StorageFunctionMapping.cs
- XamlDesignerSerializationManager.cs
- XmlSchemaCompilationSettings.cs
- Utils.cs
- SchemaImporterExtensionElementCollection.cs
- RegularExpressionValidator.cs
- XamlRtfConverter.cs
- InputGestureCollection.cs
- Tag.cs
- OracleTimeSpan.cs
- AssemblyBuilder.cs
- BamlTreeMap.cs
- DataSourceProvider.cs
- VSWCFServiceContractGenerator.cs
- TreeViewEvent.cs
- SortAction.cs
- Token.cs
- DemultiplexingClientMessageFormatter.cs
- PropertyEmitterBase.cs
- TextSchema.cs
- CreateUserWizard.cs
- ImageInfo.cs
- WS2007FederationHttpBindingCollectionElement.cs
- SymbolType.cs
- XmlNamedNodeMap.cs
- FloaterParaClient.cs
- ListItemViewControl.cs
- ActivityPropertyReference.cs
- CfgParser.cs
- ICspAsymmetricAlgorithm.cs
- ListBoxItemWrapperAutomationPeer.cs
- NumericPagerField.cs
- InvalidWMPVersionException.cs
- DataControlFieldCell.cs
- TypographyProperties.cs
- TransformCollection.cs
- PropertyValue.cs
- LockCookie.cs
- StrokeCollectionDefaultValueFactory.cs
- WebBrowserEvent.cs
- RuleSettings.cs
- BindableAttribute.cs
- DesignOnlyAttribute.cs
- ButtonChrome.cs
- LinkClickEvent.cs
- AssociationSetEnd.cs
- ComPlusThreadInitializer.cs
- COM2ColorConverter.cs
- DesignSurfaceManager.cs
- HtmlControl.cs
- AssemblyCollection.cs
- RenderDataDrawingContext.cs
- Tile.cs
- Registry.cs
- TableLayoutPanelCellPosition.cs
- FileCodeGroup.cs
- BitmapEffectInput.cs
- ComboBox.cs
- MouseActionConverter.cs
- LicenseException.cs
- AnnotationResourceCollection.cs
- StylusPlugInCollection.cs
- WebPartTracker.cs
- SR.cs
- ListMarkerSourceInfo.cs
- PinnedBufferMemoryStream.cs
- LassoHelper.cs
- _BasicClient.cs
- EntityModelSchemaGenerator.cs
- SamlSecurityToken.cs
- StandardCommands.cs
- SmtpNtlmAuthenticationModule.cs
- OdbcErrorCollection.cs
- DataServiceSaveChangesEventArgs.cs
- BorderGapMaskConverter.cs
- Context.cs
- ColumnClickEvent.cs
- RepeatInfo.cs
- WindowsEditBox.cs
- TypeInfo.cs
- GlobalEventManager.cs