Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / DocumentStructures / StoryFragments.cs / 1305600 / StoryFragments.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // History: // 05/12/2005 : mingliu - created. // // //--------------------------------------------------------------------------- using MS.Internal.Documents; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Reflection; using System.Security.Permissions; using System.Windows.Controls.Primitives; using System.Windows.Documents; using System.Windows.Media; using System.Windows.Shapes; using System.Windows.Markup; [assembly: XmlnsDefinition( "http://schemas.microsoft.com/xps/2005/06/documentstructure", "System.Windows.Documents.DocumentStructures")] namespace System.Windows.Documents.DocumentStructures { ////// /// [ContentProperty("StoryFragmentList")] public class StoryFragments : IAddChild, IEnumerable, IEnumerable { /// /// /// public StoryFragments() { _elementList = new List(); } public void Add(StoryFragment storyFragment) { if (storyFragment == null) { throw new ArgumentNullException("storyFragment"); } ((IAddChild) this).AddChild(storyFragment); } void IAddChild.AddChild(object value) { // // Only the StoryFragment type are accepted. // if (value is StoryFragment) { _elementList.Add( (StoryFragment) value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(StoryFragment)), "value"); } void IAddChild.AddText(string text) { } IEnumerator IEnumerable .GetEnumerator() { throw new NotSupportedException(); } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable )this).GetEnumerator(); } internal List StoryFragmentList { get { return _elementList; } } private List _elementList; } /// /// /// [ContentProperty("BlockElementList")] public class StoryFragment : IAddChild, IEnumerable, IEnumerable { /// /// /// public StoryFragment() { _elementList = new List(); } public void Add(BlockElement element) { if (element == null) { throw new ArgumentNullException("element"); } ((IAddChild) this).AddChild(element); } void IAddChild.AddChild(object value) { // // Only the following type are accepted. // Section|Paragraph|Inline(Bold|Italic|Underline)|Floater|Figure|List // |Table|StoryBreak // if (value is SectionStructure || value is ParagraphStructure || value is FigureStructure || value is ListStructure || value is TableStructure || value is StoryBreak) { _elementList.Add( (BlockElement) value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType6, value.GetType(), typeof(SectionStructure), typeof(ParagraphStructure), typeof(FigureStructure), typeof(ListStructure), typeof(TableStructure), typeof(StoryBreak)), "value"); } void IAddChild.AddText(string text) { } IEnumerator IEnumerable .GetEnumerator() { throw new NotSupportedException(); } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable )this).GetEnumerator(); } /// /// The element name /// public string StoryName { get { return _storyName; } set { _storyName = value; } } ////// The element name /// public string FragmentName { get { return _fragmentName; } set { _fragmentName = value; } } ////// The element name /// public String FragmentType { get { return _fragmentType; } set { _fragmentType = value; } } internal ListBlockElementList { get { return _elementList; } } private List _elementList; private String _storyName; private String _fragmentName; private String _fragmentType; } } // 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. // // // History: // 05/12/2005 : mingliu - created. // // //--------------------------------------------------------------------------- using MS.Internal.Documents; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Reflection; using System.Security.Permissions; using System.Windows.Controls.Primitives; using System.Windows.Documents; using System.Windows.Media; using System.Windows.Shapes; using System.Windows.Markup; [assembly: XmlnsDefinition( "http://schemas.microsoft.com/xps/2005/06/documentstructure", "System.Windows.Documents.DocumentStructures")] namespace System.Windows.Documents.DocumentStructures { ////// /// [ContentProperty("StoryFragmentList")] public class StoryFragments : IAddChild, IEnumerable, IEnumerable { /// /// /// public StoryFragments() { _elementList = new List(); } public void Add(StoryFragment storyFragment) { if (storyFragment == null) { throw new ArgumentNullException("storyFragment"); } ((IAddChild) this).AddChild(storyFragment); } void IAddChild.AddChild(object value) { // // Only the StoryFragment type are accepted. // if (value is StoryFragment) { _elementList.Add( (StoryFragment) value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(StoryFragment)), "value"); } void IAddChild.AddText(string text) { } IEnumerator IEnumerable .GetEnumerator() { throw new NotSupportedException(); } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable )this).GetEnumerator(); } internal List StoryFragmentList { get { return _elementList; } } private List _elementList; } /// /// /// [ContentProperty("BlockElementList")] public class StoryFragment : IAddChild, IEnumerable, IEnumerable { /// /// /// public StoryFragment() { _elementList = new List(); } public void Add(BlockElement element) { if (element == null) { throw new ArgumentNullException("element"); } ((IAddChild) this).AddChild(element); } void IAddChild.AddChild(object value) { // // Only the following type are accepted. // Section|Paragraph|Inline(Bold|Italic|Underline)|Floater|Figure|List // |Table|StoryBreak // if (value is SectionStructure || value is ParagraphStructure || value is FigureStructure || value is ListStructure || value is TableStructure || value is StoryBreak) { _elementList.Add( (BlockElement) value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType6, value.GetType(), typeof(SectionStructure), typeof(ParagraphStructure), typeof(FigureStructure), typeof(ListStructure), typeof(TableStructure), typeof(StoryBreak)), "value"); } void IAddChild.AddText(string text) { } IEnumerator IEnumerable .GetEnumerator() { throw new NotSupportedException(); } IEnumerator IEnumerable.GetEnumerator() { return ((IEnumerable )this).GetEnumerator(); } /// /// The element name /// public string StoryName { get { return _storyName; } set { _storyName = value; } } ////// The element name /// public string FragmentName { get { return _fragmentName; } set { _fragmentName = value; } } ////// The element name /// public String FragmentType { get { return _fragmentType; } set { _fragmentType = value; } } internal ListBlockElementList { get { return _elementList; } } private List _elementList; private String _storyName; private String _fragmentName; private String _fragmentType; } } // 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
- TripleDESCryptoServiceProvider.cs
- StylusOverProperty.cs
- DataBoundControlAdapter.cs
- ResizeGrip.cs
- SecurityState.cs
- HorizontalAlignConverter.cs
- SafeArrayTypeMismatchException.cs
- WebException.cs
- DesignTable.cs
- Image.cs
- SizeConverter.cs
- PersonalizationDictionary.cs
- SafePointer.cs
- WebBrowserProgressChangedEventHandler.cs
- SystemIPv4InterfaceProperties.cs
- ListViewEditEventArgs.cs
- TextHidden.cs
- XPathAncestorQuery.cs
- Attribute.cs
- TogglePatternIdentifiers.cs
- ExceptionHelpers.cs
- CheckBoxField.cs
- FormViewRow.cs
- EntitySqlException.cs
- FixedSOMTableCell.cs
- StorageMappingItemCollection.cs
- ArgumentNullException.cs
- RadioButtonPopupAdapter.cs
- SiblingIterators.cs
- Literal.cs
- BuildManager.cs
- CodePageEncoding.cs
- SecurityDocument.cs
- ScriptReference.cs
- RoutedEvent.cs
- XmlConvert.cs
- HandleValueEditor.cs
- MaskedTextBox.cs
- HealthMonitoringSectionHelper.cs
- Sql8ConformanceChecker.cs
- SessionStateContainer.cs
- GrammarBuilderWildcard.cs
- FontDifferentiator.cs
- DrawingDrawingContext.cs
- TextRunTypographyProperties.cs
- ModuleBuilderData.cs
- SafeRightsManagementEnvironmentHandle.cs
- ObjectDataSource.cs
- XmlILModule.cs
- MILUtilities.cs
- ToolTipAutomationPeer.cs
- DataGridPagingPage.cs
- SmiConnection.cs
- PathFigureCollectionConverter.cs
- LinqDataSourceSelectEventArgs.cs
- SecurityRequiresReviewAttribute.cs
- SchemaExporter.cs
- PathSegment.cs
- SmtpFailedRecipientException.cs
- BaseParaClient.cs
- ContentHostHelper.cs
- FormsAuthentication.cs
- XmlParserContext.cs
- Msec.cs
- InsufficientMemoryException.cs
- OnOperation.cs
- AssociationType.cs
- GroupBoxAutomationPeer.cs
- ModelPropertyDescriptor.cs
- GeometryGroup.cs
- UIElement.cs
- StructuralCache.cs
- DocumentApplication.cs
- AdRotatorDesigner.cs
- SqlWebEventProvider.cs
- Policy.cs
- FixedSOMGroup.cs
- URLString.cs
- WebConfigurationFileMap.cs
- TextRange.cs
- CapabilitiesState.cs
- FixedElement.cs
- SmtpDateTime.cs
- SqlInternalConnection.cs
- ExtenderProvidedPropertyAttribute.cs
- EventListener.cs
- ManipulationDeltaEventArgs.cs
- RawStylusInput.cs
- AssemblyAttributesGoHere.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- Stream.cs
- ClientBuildManagerCallback.cs
- ErrorProvider.cs
- cookiecontainer.cs
- ArrangedElement.cs
- MultilineStringEditor.cs
- CompilationUnit.cs
- NonBatchDirectoryCompiler.cs
- COSERVERINFO.cs
- EventProviderWriter.cs