Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Documents / DocumentStructures / StoryFragments.cs / 1 / 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 { ////// /// public class StoryFragments : IAddChildInternal { ////// /// public StoryFragments() { _elementList = new List(); } 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) { } internal List StoryFragmentList { get { return _elementList; } } private List _elementList; } /// /// /// public class StoryFragment : IAddChildInternal { ////// /// public StoryFragment() { _elementList = new List(); } 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) { } /// /// 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 { ////// /// public class StoryFragments : IAddChildInternal { ////// /// public StoryFragments() { _elementList = new List(); } 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) { } internal List StoryFragmentList { get { return _elementList; } } private List _elementList; } /// /// /// public class StoryFragment : IAddChildInternal { ////// /// public StoryFragment() { _elementList = new List(); } 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) { } /// /// 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
- XmlSchemaSimpleType.cs
- HttpListenerContext.cs
- TileBrush.cs
- ClientData.cs
- OraclePermissionAttribute.cs
- FontWeightConverter.cs
- AttributeQuery.cs
- DataGridViewLinkCell.cs
- SqlNodeTypeOperators.cs
- TypeDependencyAttribute.cs
- FilterException.cs
- TextViewSelectionProcessor.cs
- AlternateViewCollection.cs
- TextFormattingConverter.cs
- AttributeProviderAttribute.cs
- XmlSchemaAll.cs
- ParentQuery.cs
- Header.cs
- BindingGroup.cs
- SafeFileHandle.cs
- SmtpNtlmAuthenticationModule.cs
- FixedTextView.cs
- EdmItemError.cs
- BaseValidatorDesigner.cs
- RegexGroupCollection.cs
- DataGridViewCheckBoxColumn.cs
- EntityContainerEmitter.cs
- DataGridViewCellStyleConverter.cs
- DnsCache.cs
- ZipFileInfo.cs
- SimpleHandlerFactory.cs
- XmlLoader.cs
- PowerModeChangedEventArgs.cs
- ByeOperationAsyncResult.cs
- ApplicationGesture.cs
- ArrangedElement.cs
- BinaryOperationBinder.cs
- GraphicsContainer.cs
- DataPointer.cs
- VisualBrush.cs
- SqlTypesSchemaImporter.cs
- SqlUserDefinedAggregateAttribute.cs
- ReflectionServiceProvider.cs
- SelectionRangeConverter.cs
- DesignOnlyAttribute.cs
- httpapplicationstate.cs
- NumberFormatInfo.cs
- CleanUpVirtualizedItemEventArgs.cs
- ComponentChangedEvent.cs
- WebServiceFaultDesigner.cs
- _Rfc2616CacheValidators.cs
- MsmqIntegrationInputChannel.cs
- BlurBitmapEffect.cs
- WebBaseEventKeyComparer.cs
- HuffmanTree.cs
- ButtonStandardAdapter.cs
- TcpConnectionPoolSettings.cs
- MemoryFailPoint.cs
- ProxyAttribute.cs
- ListControlStringCollectionEditor.cs
- EncryptedData.cs
- DynamicEndpoint.cs
- OLEDB_Enum.cs
- Configuration.cs
- NativeMethods.cs
- XmlComplianceUtil.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- PersistenceTask.cs
- EventManager.cs
- XmlSchemaSet.cs
- DrawingState.cs
- StickyNote.cs
- InputScope.cs
- DLinqAssociationProvider.cs
- ToolboxItemFilterAttribute.cs
- CodeDelegateInvokeExpression.cs
- ExternalException.cs
- Logging.cs
- MasterPage.cs
- LocalizationParserHooks.cs
- RequestTimeoutManager.cs
- InnerItemCollectionView.cs
- PriorityChain.cs
- AlphabeticalEnumConverter.cs
- BinarySerializer.cs
- ApplicationSettingsBase.cs
- SplitContainer.cs
- DetailsViewRowCollection.cs
- FormatPage.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- ConfigurationElementProperty.cs
- DCSafeHandle.cs
- NullEntityWrapper.cs
- TextServicesPropertyRanges.cs
- ContentOperations.cs
- Bold.cs
- WebMessageEncodingElement.cs
- UpdatePanelControlTrigger.cs
- SoapIgnoreAttribute.cs
- PresentationTraceSources.cs