Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / FixedLineResult.cs / 1305600 / FixedLineResult.cs
//---------------------------------------------------------------------------- //// Copyright (C) 2004 by Microsoft Corporation. All rights reserved. // // // Description: // FixedLineResult represents a per-line layout info for a fixe page // // History: // 11/23/2004 - Zhenbin Xu (ZhenbinX) - Created. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { using MS.Internal.Documents; using System; using System.Collections; using System.Diagnostics; using System.Globalization; //===================================================================== ////// FixedLineResult represents a per-line layout info for a fixe page /// internal sealed class FixedLineResult : IComparable { //------------------------------------------------------------------- // // Connstructors // //---------------------------------------------------------------------- #region Constructors internal FixedLineResult(FixedNode[] nodes, Rect layoutBox) { _nodes = nodes; _layoutBox = layoutBox; } #endregion Constructors //------------------------------------------------------------------- // // Public Methods // //---------------------------------------------------------------------- // IComparable Override public int CompareTo(object o) { if (o == null) { throw new ArgumentNullException("o"); } if (o.GetType() != typeof(FixedLineResult)) { throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, o.GetType(), typeof(FixedLineResult)), "o"); } FixedLineResult lineResult = (FixedLineResult)o; return this.BaseLine.CompareTo(lineResult.BaseLine); } #if DEBUG ////// Create a string representation of this object /// ///string - A string representation of this object public override string ToString() { return String.Format(CultureInfo.InvariantCulture, "FLR[{0}:{1}][{2}][{3}]", Start.ToString(), End.ToString(), BaseLine, _layoutBox); } #endif //-------------------------------------------------------------------- // // Public Properties // //--------------------------------------------------------------------- //-------------------------------------------------------------------- // // Public Events // //--------------------------------------------------------------------- //------------------------------------------------------------------- // // Internal Methods // //--------------------------------------------------------------------- //-------------------------------------------------------------------- // // Internal Properties // //--------------------------------------------------------------------- #region Internal Properties // internal FixedNode Start { get { return _nodes[0]; } } internal FixedNode End { get { return _nodes[_nodes.Length - 1]; } } internal FixedNode[] Nodes { get { return _nodes; } } internal double BaseLine { get { return _layoutBox.Bottom; } } internal Rect LayoutBox { get { return _layoutBox; } } #endregion Internal Properties //-------------------------------------------------------------------- // // Private Methods // //---------------------------------------------------------------------- #region Private Properties #endregion Private Properties //------------------------------------------------------------------- // // Private Fields // //---------------------------------------------------------------------- #region Private Fields private readonly FixedNode[] _nodes; private readonly Rect _layoutBox; // relative to page #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
- BindingExpressionUncommonField.cs
- TypeBrowserDialog.cs
- IIS7WorkerRequest.cs
- VersionedStream.cs
- DebugHandleTracker.cs
- WmfPlaceableFileHeader.cs
- Cursor.cs
- BitmapEncoder.cs
- WebHttpBehavior.cs
- StrokeCollectionConverter.cs
- PersonalizationProvider.cs
- IdentifierService.cs
- StreamReader.cs
- ConfigurationStrings.cs
- dataprotectionpermissionattribute.cs
- CapabilitiesRule.cs
- ActivityMarkupSerializer.cs
- MruCache.cs
- IgnorePropertiesAttribute.cs
- MemberRestriction.cs
- EUCJPEncoding.cs
- InputReferenceExpression.cs
- WarningException.cs
- mactripleDES.cs
- SmiTypedGetterSetter.cs
- LifetimeMonitor.cs
- QueryCacheEntry.cs
- DebugViewWriter.cs
- ReadOnlyDataSourceView.cs
- activationcontext.cs
- AbandonedMutexException.cs
- BeginEvent.cs
- XmlSchemaAnnotation.cs
- Int64KeyFrameCollection.cs
- WorkflowExecutor.cs
- ZipPackage.cs
- PropertyEmitter.cs
- ClientProtocol.cs
- DataGridViewColumnCollection.cs
- XmlSerializerSection.cs
- PagedDataSource.cs
- MetaModel.cs
- ScriptHandlerFactory.cs
- FormatConvertedBitmap.cs
- DateTimeFormat.cs
- UInt16.cs
- TemplateBindingExtensionConverter.cs
- DataStreamFromComStream.cs
- ToolStripCollectionEditor.cs
- ExtentCqlBlock.cs
- DropTarget.cs
- RunInstallerAttribute.cs
- BaseCodePageEncoding.cs
- SizeChangedInfo.cs
- ProxyHwnd.cs
- CommonProperties.cs
- _ScatterGatherBuffers.cs
- CellNormalizer.cs
- DateTimeOffset.cs
- BaseAutoFormat.cs
- SettingsBase.cs
- XNameConverter.cs
- BookmarkInfo.cs
- WebPartConnectionsConfigureVerb.cs
- InputMethodStateTypeInfo.cs
- SingleAnimation.cs
- X509ServiceCertificateAuthenticationElement.cs
- XPathItem.cs
- ImagingCache.cs
- IndependentlyAnimatedPropertyMetadata.cs
- ExpressionLexer.cs
- ArgIterator.cs
- ToolboxComponentsCreatedEventArgs.cs
- COM2IDispatchConverter.cs
- FileLogRecordHeader.cs
- OracleConnectionString.cs
- HebrewNumber.cs
- BindingContext.cs
- HashFinalRequest.cs
- PersonalizationDictionary.cs
- PlanCompilerUtil.cs
- DocumentSequence.cs
- StagingAreaInputItem.cs
- Transform3DGroup.cs
- SoapServerProtocol.cs
- _SpnDictionary.cs
- BrowserCapabilitiesFactory.cs
- lengthconverter.cs
- CodeDomConfigurationHandler.cs
- TreeView.cs
- RtfControls.cs
- XamlVector3DCollectionSerializer.cs
- ContainerParaClient.cs
- Style.cs
- DataBindingCollection.cs
- DataSourceCache.cs
- WinEventTracker.cs
- ModifierKeysValueSerializer.cs
- RpcCryptoRequest.cs
- SafeRightsManagementPubHandle.cs