Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media / GuidelineCollection.cs / 1 / GuidelineCollection.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: // The GuidelineSet object represents a set of guidelines // used in rendering for better adjusting rendered figures to device pixel grid. // // History: // 2005/01/17 : mikhaill - Created // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; namespace System.Windows.Media { ////// The GuidelineSet object represents a set of guide lines /// used in rendering for better adjusting rendered figures to device pixel grid. /// /// public partial class GuidelineSet : Animatable, DUCE.IResource { #region Constructors ////// Default constructor /// public GuidelineSet() { } ////// Constructs a new GuidelineSet object. /// This constructor is internal for now, till we'll find a solution /// for multi-path dynamic guideline implementation. If/when it'll happen, /// it should become "public" so that the next constructor (without "isDynamic' /// argument) may go away. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. /// Usage flag: when true then rendering machine will detect animation state and apply subpixel animation behavior. internal GuidelineSet(double[] guidelinesX, double[] guidelinesY, bool isDynamic) { if (guidelinesX != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesX.Length % 2 == 0); GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesY.Length % 2 == 0); GuidelinesY = new DoubleCollection(guidelinesY); } IsDynamic = isDynamic; } ////// Constructs a new GuidelineSet object. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. public GuidelineSet(double[] guidelinesX, double[] guidelinesY) { if (guidelinesX != null) { GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { GuidelinesY = new DoubleCollection(guidelinesY); } } #endregion Constructors } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: // The GuidelineSet object represents a set of guidelines // used in rendering for better adjusting rendered figures to device pixel grid. // // History: // 2005/01/17 : mikhaill - Created // //--------------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; namespace System.Windows.Media { ////// The GuidelineSet object represents a set of guide lines /// used in rendering for better adjusting rendered figures to device pixel grid. /// /// public partial class GuidelineSet : Animatable, DUCE.IResource { #region Constructors ////// Default constructor /// public GuidelineSet() { } ////// Constructs a new GuidelineSet object. /// This constructor is internal for now, till we'll find a solution /// for multi-path dynamic guideline implementation. If/when it'll happen, /// it should become "public" so that the next constructor (without "isDynamic' /// argument) may go away. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. /// Usage flag: when true then rendering machine will detect animation state and apply subpixel animation behavior. internal GuidelineSet(double[] guidelinesX, double[] guidelinesY, bool isDynamic) { if (guidelinesX != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesX.Length % 2 == 0); GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { // Dynamic guideline is defined by a pair of numbers: (coordinate, shift), // so the legnth of array should be even. Debug.Assert(!isDynamic || guidelinesY.Length % 2 == 0); GuidelinesY = new DoubleCollection(guidelinesY); } IsDynamic = isDynamic; } ////// Constructs a new GuidelineSet object. /// /// Array of X coordinates that defines a set of vertical guidelines. /// Array of Y coordinates that defines a set of horizontal guidelines. public GuidelineSet(double[] guidelinesX, double[] guidelinesY) { if (guidelinesX != null) { GuidelinesX = new DoubleCollection(guidelinesX); } if (guidelinesY != null) { GuidelinesY = new DoubleCollection(guidelinesY); } } #endregion Constructors } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HwndTarget.cs
- CellTreeSimplifier.cs
- DataServiceBehavior.cs
- TriggerActionCollection.cs
- NullRuntimeConfig.cs
- DelayedRegex.cs
- WsatExtendedInformation.cs
- TextTreeUndo.cs
- XsdBuildProvider.cs
- VirtualizedItemProviderWrapper.cs
- ClientUrlResolverWrapper.cs
- InputMethodStateTypeInfo.cs
- DropAnimation.xaml.cs
- IIS7ConfigurationLoader.cs
- TextPenaltyModule.cs
- InternalDispatchObject.cs
- BitmapCodecInfoInternal.cs
- EditorResources.cs
- MenuAutoFormat.cs
- LazyLoadBehavior.cs
- newitemfactory.cs
- DecodeHelper.cs
- XmlSortKeyAccumulator.cs
- EtwProvider.cs
- SafeCertificateStore.cs
- TemplateControlCodeDomTreeGenerator.cs
- MatrixUtil.cs
- ObjectDataSourceView.cs
- StringFreezingAttribute.cs
- RegistryKey.cs
- ConfigurationValue.cs
- Viewport3DVisual.cs
- datacache.cs
- SecurityRuntime.cs
- Funcletizer.cs
- SmuggledIUnknown.cs
- PathSegment.cs
- IisTraceListener.cs
- HtmlInputFile.cs
- MimeParameter.cs
- DynamicValidatorEventArgs.cs
- LinqDataSourceSelectEventArgs.cs
- EdmTypeAttribute.cs
- SqlNodeAnnotation.cs
- Speller.cs
- ProxyWebPartConnectionCollection.cs
- EqualityArray.cs
- OleDbInfoMessageEvent.cs
- ImageCollectionCodeDomSerializer.cs
- TagPrefixAttribute.cs
- Native.cs
- ExpressionNormalizer.cs
- QueryPageSettingsEventArgs.cs
- ContextMenu.cs
- DefaultBinder.cs
- OverflowException.cs
- _RequestCacheProtocol.cs
- ColumnMapCopier.cs
- QueryStringParameter.cs
- streamingZipPartStream.cs
- InplaceBitmapMetadataWriter.cs
- OperationResponse.cs
- FilterQueryOptionExpression.cs
- GreenMethods.cs
- WindowsTab.cs
- XDRSchema.cs
- ContractHandle.cs
- DropDownList.cs
- ProfilePropertyMetadata.cs
- TransformerConfigurationWizardBase.cs
- ListCardsInFileRequest.cs
- ToolboxItemFilterAttribute.cs
- OracleMonthSpan.cs
- RadioButtonAutomationPeer.cs
- SQLInt32Storage.cs
- DependencyPropertyKind.cs
- IDQuery.cs
- mansign.cs
- UserInitiatedNavigationPermission.cs
- XmlNamedNodeMap.cs
- MemberDescriptor.cs
- ValidationError.cs
- OracleCommandSet.cs
- TypeConverterAttribute.cs
- XmlAttributeCollection.cs
- nulltextnavigator.cs
- IResourceProvider.cs
- WebBrowserDocumentCompletedEventHandler.cs
- DataChangedEventManager.cs
- KoreanLunisolarCalendar.cs
- Script.cs
- URIFormatException.cs
- EntityProviderServices.cs
- XhtmlBasicLinkAdapter.cs
- TopClause.cs
- KerberosRequestorSecurityToken.cs
- JsonFormatReaderGenerator.cs
- XmlExpressionDumper.cs
- Vector3D.cs
- ClientFormsIdentity.cs