Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Documents / DocumentStructures / SemanticBasicElement.cs / 1 / SemanticBasicElement.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 SemanticBasicElement : BlockElement { ////// /// internal SemanticBasicElement() { _elementList = new List(); } internal List BlockElementList { get { return _elementList; } } /// /// /// internal List_elementList; } /// /// /// public class SectionStructure : SemanticBasicElement, IAddChildInternal { ////// /// public SectionStructure() { _elementType = FixedElement.ElementType.Section; } void IAddChild.AddChild(object value) { if (value is ParagraphStructure || value is FigureStructure || value is ListStructure || value is TableStructure ) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType4, value.GetType(), typeof(ParagraphStructure), typeof(FigureStructure), typeof(ListStructure), typeof(TableStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class ParagraphStructure : SemanticBasicElement, IAddChildInternal { ////// /// public ParagraphStructure() { _elementType = FixedElement.ElementType.Paragraph; } void IAddChild.AddChild(object value) { if (value is NamedElement) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType1, value.GetType(), typeof(NamedElement)), "value"); } void IAddChild.AddText(string text) { } } //We are keeping these classes around for V.Next #if DEBUG ////// /// internal class Inline : SemanticBasicElement { ////// /// public Inline() { _elementType = FixedElement.ElementType.Inline; } } ////// /// internal class Span : Inline, IAddChild { ////// /// public Span() { _elementType = FixedElement.ElementType.Span; } void IAddChild.AddChild(object value) { if (value is Inline || value is NamedElement) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType2, value.GetType(), typeof(ParagraphStructure), typeof(NamedElement)), "value"); } void IAddChild.AddText(string text) { //throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, typeof(string)), "text"); } } ////// /// internal class Run : Inline, IAddChild { ////// /// public Run() { _elementType = FixedElement.ElementType.Run; } void IAddChild.AddChild(object value) { throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType()), "value"); } void IAddChild.AddText(string text) { } } #endif ////// /// public class FigureStructure : SemanticBasicElement, IAddChildInternal { ////// /// public FigureStructure() { _elementType = FixedElement.ElementType.Figure; } void IAddChild.AddChild(object value) { if (value is NamedElement) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(NamedElement)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class ListStructure : SemanticBasicElement, IAddChildInternal { ////// /// public ListStructure() { _elementType = FixedElement.ElementType.List; } void IAddChild.AddChild(object value) { if (value is ListItemStructure) { _elementList.Add((ListItemStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(ListItemStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class ListItemStructure : SemanticBasicElement, IAddChildInternal { ////// /// public ListItemStructure() { _elementType = FixedElement.ElementType.ListItem; } void IAddChild.AddChild(object value) { if (value is ParagraphStructure || value is TableStructure || value is ListStructure || value is FigureStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType4, value.GetType(), typeof(ParagraphStructure), typeof(TableStructure), typeof(ListStructure), typeof(FigureStructure)), "value"); } void IAddChild.AddText(string text) { } ////// /// public String Marker { get { return _markerName; } set { _markerName = value; } } private String _markerName; } ////// /// public class TableStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableStructure() { _elementType = FixedElement.ElementType.Table; } void IAddChild.AddChild(object value) { if (value is TableRowGroupStructure) { _elementList.Add((TableRowGroupStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(TableRowGroupStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class TableRowGroupStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableRowGroupStructure() { _elementType = FixedElement.ElementType.TableRowGroup; } void IAddChild.AddChild(object value) { if (value is TableRowStructure) { _elementList.Add((TableRowStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(TableRowStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class TableRowStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableRowStructure() { _elementType = FixedElement.ElementType.TableRow; } void IAddChild.AddChild(object value) { if (value is TableCellStructure) { _elementList.Add((TableCellStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(TableCellStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class TableCellStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableCellStructure() { _elementType = FixedElement.ElementType.TableCell; _rowSpan = 1; _columnSpan = 1; } void IAddChild.AddChild(object value) { if (value is ParagraphStructure || value is TableStructure || value is ListStructure || value is FigureStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType4, value.GetType(), typeof(ParagraphStructure), typeof(TableStructure), typeof(ListStructure), typeof(FigureStructure)), "value"); } void IAddChild.AddText(string text) { } ////// /// public int RowSpan { get { return _rowSpan; } set {_rowSpan = value; } } ////// /// public int ColumnSpan { get { return _columnSpan; } set {_columnSpan = value; } } private int _rowSpan; private int _columnSpan; } //We are keeping these classes for V.Next #if DEBUG ////// Header will not participate in the selection fow. /// internal class Header : SemanticBasicElement, IAddChild { ////// /// public Header() { _elementType = FixedElement.ElementType.Header; } void IAddChild.AddChild(object value) { if (value is NamedElement || value is ParagraphStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType2, value.GetType(), typeof(NamedElement), typeof(ParagraphStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// Footer will not participate in the selection fow. /// internal class Footer : SemanticBasicElement, IAddChild { ////// /// public Footer() { _elementType = FixedElement.ElementType.Footer; } void IAddChild.AddChild(object value) { if (value is NamedElement || value is ParagraphStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType2, value.GetType(), typeof(NamedElement), typeof(ParagraphStructure)), "value"); } void IAddChild.AddText(string text) { } } #endif } // 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 SemanticBasicElement : BlockElement { ////// /// internal SemanticBasicElement() { _elementList = new List(); } internal List BlockElementList { get { return _elementList; } } /// /// /// internal List_elementList; } /// /// /// public class SectionStructure : SemanticBasicElement, IAddChildInternal { ////// /// public SectionStructure() { _elementType = FixedElement.ElementType.Section; } void IAddChild.AddChild(object value) { if (value is ParagraphStructure || value is FigureStructure || value is ListStructure || value is TableStructure ) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType4, value.GetType(), typeof(ParagraphStructure), typeof(FigureStructure), typeof(ListStructure), typeof(TableStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class ParagraphStructure : SemanticBasicElement, IAddChildInternal { ////// /// public ParagraphStructure() { _elementType = FixedElement.ElementType.Paragraph; } void IAddChild.AddChild(object value) { if (value is NamedElement) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType1, value.GetType(), typeof(NamedElement)), "value"); } void IAddChild.AddText(string text) { } } //We are keeping these classes around for V.Next #if DEBUG ////// /// internal class Inline : SemanticBasicElement { ////// /// public Inline() { _elementType = FixedElement.ElementType.Inline; } } ////// /// internal class Span : Inline, IAddChild { ////// /// public Span() { _elementType = FixedElement.ElementType.Span; } void IAddChild.AddChild(object value) { if (value is Inline || value is NamedElement) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType2, value.GetType(), typeof(ParagraphStructure), typeof(NamedElement)), "value"); } void IAddChild.AddText(string text) { //throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, typeof(string)), "text"); } } ////// /// internal class Run : Inline, IAddChild { ////// /// public Run() { _elementType = FixedElement.ElementType.Run; } void IAddChild.AddChild(object value) { throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType()), "value"); } void IAddChild.AddText(string text) { } } #endif ////// /// public class FigureStructure : SemanticBasicElement, IAddChildInternal { ////// /// public FigureStructure() { _elementType = FixedElement.ElementType.Figure; } void IAddChild.AddChild(object value) { if (value is NamedElement) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(NamedElement)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class ListStructure : SemanticBasicElement, IAddChildInternal { ////// /// public ListStructure() { _elementType = FixedElement.ElementType.List; } void IAddChild.AddChild(object value) { if (value is ListItemStructure) { _elementList.Add((ListItemStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(ListItemStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class ListItemStructure : SemanticBasicElement, IAddChildInternal { ////// /// public ListItemStructure() { _elementType = FixedElement.ElementType.ListItem; } void IAddChild.AddChild(object value) { if (value is ParagraphStructure || value is TableStructure || value is ListStructure || value is FigureStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType4, value.GetType(), typeof(ParagraphStructure), typeof(TableStructure), typeof(ListStructure), typeof(FigureStructure)), "value"); } void IAddChild.AddText(string text) { } ////// /// public String Marker { get { return _markerName; } set { _markerName = value; } } private String _markerName; } ////// /// public class TableStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableStructure() { _elementType = FixedElement.ElementType.Table; } void IAddChild.AddChild(object value) { if (value is TableRowGroupStructure) { _elementList.Add((TableRowGroupStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(TableRowGroupStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class TableRowGroupStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableRowGroupStructure() { _elementType = FixedElement.ElementType.TableRowGroup; } void IAddChild.AddChild(object value) { if (value is TableRowStructure) { _elementList.Add((TableRowStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(TableRowStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class TableRowStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableRowStructure() { _elementType = FixedElement.ElementType.TableRow; } void IAddChild.AddChild(object value) { if (value is TableCellStructure) { _elementList.Add((TableCellStructure)value); return; } throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(TableCellStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// /// public class TableCellStructure : SemanticBasicElement, IAddChildInternal { ////// /// public TableCellStructure() { _elementType = FixedElement.ElementType.TableCell; _rowSpan = 1; _columnSpan = 1; } void IAddChild.AddChild(object value) { if (value is ParagraphStructure || value is TableStructure || value is ListStructure || value is FigureStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType4, value.GetType(), typeof(ParagraphStructure), typeof(TableStructure), typeof(ListStructure), typeof(FigureStructure)), "value"); } void IAddChild.AddText(string text) { } ////// /// public int RowSpan { get { return _rowSpan; } set {_rowSpan = value; } } ////// /// public int ColumnSpan { get { return _columnSpan; } set {_columnSpan = value; } } private int _rowSpan; private int _columnSpan; } //We are keeping these classes for V.Next #if DEBUG ////// Header will not participate in the selection fow. /// internal class Header : SemanticBasicElement, IAddChild { ////// /// public Header() { _elementType = FixedElement.ElementType.Header; } void IAddChild.AddChild(object value) { if (value is NamedElement || value is ParagraphStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType2, value.GetType(), typeof(NamedElement), typeof(ParagraphStructure)), "value"); } void IAddChild.AddText(string text) { } } ////// Footer will not participate in the selection fow. /// internal class Footer : SemanticBasicElement, IAddChild { ////// /// public Footer() { _elementType = FixedElement.ElementType.Footer; } void IAddChild.AddChild(object value) { if (value is NamedElement || value is ParagraphStructure) { _elementList.Add((BlockElement)value); return; } throw new ArgumentException(SR.Get(SRID.DocumentStructureUnexpectedParameterType2, value.GetType(), typeof(NamedElement), typeof(ParagraphStructure)), "value"); } void IAddChild.AddText(string text) { } } #endif } // 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
- DataGridViewRowStateChangedEventArgs.cs
- AnnotationResourceChangedEventArgs.cs
- DynamicQueryableWrapper.cs
- XmlCharCheckingReader.cs
- DataException.cs
- MultipleViewPattern.cs
- EditorPart.cs
- DataGridViewImageCell.cs
- VirtualPathUtility.cs
- Speller.cs
- CurrencyWrapper.cs
- GetKeyedHashRequest.cs
- ConfigurationStrings.cs
- DataGridItem.cs
- Trigger.cs
- InputLangChangeEvent.cs
- PageHandlerFactory.cs
- SchemeSettingElementCollection.cs
- TransformConverter.cs
- BitmapImage.cs
- InputManager.cs
- ThreadPool.cs
- AmbiguousMatchException.cs
- MenuScrollingVisibilityConverter.cs
- DaylightTime.cs
- HttpClientChannel.cs
- Point3DCollection.cs
- SQLConvert.cs
- SystemIcmpV6Statistics.cs
- Logging.cs
- RoamingStoreFile.cs
- ContentElementCollection.cs
- AccessDataSourceDesigner.cs
- DiscoveryClient.cs
- ExtensionFile.cs
- QueuedDeliveryRequirementsMode.cs
- CheckableControlBaseAdapter.cs
- UnmanagedMemoryStreamWrapper.cs
- entitydatasourceentitysetnameconverter.cs
- GrammarBuilder.cs
- SqlConnection.cs
- WebPartZoneCollection.cs
- ScrollProperties.cs
- ComplexTypeEmitter.cs
- AttachedPropertyMethodSelector.cs
- ElementAtQueryOperator.cs
- DelimitedListTraceListener.cs
- WebServiceClientProxyGenerator.cs
- TraceProvider.cs
- DelegatedStream.cs
- StatusBarAutomationPeer.cs
- PeerNameResolver.cs
- XmlLinkedNode.cs
- SchemaSetCompiler.cs
- EventMappingSettingsCollection.cs
- AssemblyAssociatedContentFileAttribute.cs
- QueryPageSettingsEventArgs.cs
- DataGridParentRows.cs
- RankException.cs
- DataGridHeaderBorder.cs
- SuppressMergeCheckAttribute.cs
- ModelPropertyImpl.cs
- QuaternionAnimation.cs
- AffineTransform3D.cs
- ListItemParagraph.cs
- ActivationArguments.cs
- NetworkStream.cs
- ClientSettingsStore.cs
- ControlType.cs
- MatrixAnimationUsingKeyFrames.cs
- SqlStream.cs
- BinaryUtilClasses.cs
- AspNetHostingPermission.cs
- TileBrush.cs
- SharedPersonalizationStateInfo.cs
- StylusDevice.cs
- SplashScreenNativeMethods.cs
- HttpListenerContext.cs
- OleDbPropertySetGuid.cs
- XamlInt32CollectionSerializer.cs
- storepermission.cs
- EntryIndex.cs
- PathFigure.cs
- XmlEntityReference.cs
- Stroke2.cs
- EntityDataSourceView.cs
- SessionStateSection.cs
- XmlSubtreeReader.cs
- ToolStripLabel.cs
- DataRelationPropertyDescriptor.cs
- EventMappingSettings.cs
- HtmlDocument.cs
- QueryContinueDragEventArgs.cs
- SymDocumentType.cs
- ReadOnlyCollectionBase.cs
- XamlBrushSerializer.cs
- IgnoreFileBuildProvider.cs
- AssemblyAttributes.cs
- WebPartConnectionCollection.cs
- KeyValueConfigurationCollection.cs